lmariscal

hyper.js

Jun 7th, 2018
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.41 KB | None | 0 0
  1. module.exports = {
  2.   config: {
  3.     updateChannel: 'stable',
  4.     fontSize: 12,
  5.     fontFamily: 'Roboto Mono',
  6.     fontWeight: 'normal',
  7.     fontWeightBold: 'bold',
  8.     cursorColor: 'rgba(248,28,229,0.8)',
  9.     cursorAccentColor: '#000',
  10.     cursorShape: 'BEAM',
  11.     cursorBlink: false,
  12.     foregroundColor: '#fff',
  13.     backgroundColor: '#000',
  14.     selectionColor: 'rgba(248,28,229,0.3)',
  15.     borderColor: '#333',
  16.     css: '',
  17.     termCSS: '',
  18.     showHamburgerMenu: '',
  19.     showWindowControls: '',
  20.  
  21.     padding: '12px 14px',
  22.  
  23.     colors: {
  24.       black: '#000000',
  25.       red: '#C51E14',
  26.       green: '#1DC121',
  27.       yellow: '#C7C329',
  28.       blue: '#0A2FC4',
  29.       magenta: '#C839C5',
  30.       cyan: '#20C5C6',
  31.       white: '#C7C7C7',
  32.       lightBlack: '#686868',
  33.       lightRed: '#FD6F6B',
  34.       lightGreen: '#67F86F',
  35.       lightYellow: '#FFFA72',
  36.       lightBlue: '#6A76FB',
  37.       lightMagenta: '#FD7CFC',
  38.       lightCyan: '#68FDFE',
  39.       lightWhite: '#FFFFFF',
  40.     },
  41.  
  42.     // Windows
  43.     shell: 'cmd.exe',
  44.     shellArgs: ['/k', 'A:\\programs\\cmder\\vendor\\init.bat'],
  45.     env: { 'TERM':'cygwin' },
  46.  
  47.     bell: 'false',
  48.     copyOnSelect: false,
  49.     defaultSSHApp: true,
  50.   },
  51.  
  52.   plugins: [
  53.     "hyper-seti-monokai",
  54.     "hyper-tabs-enhanced",
  55.     "hyperminimal",
  56.     "hyper-startup",
  57.     "gitrocket"
  58.   ],
  59.  
  60.   keymaps: {
  61.     // Example
  62.     // 'window:devtools': 'cmd+alt+o',
  63.   },
  64. };
Advertisement
Add Comment
Please, Sign In to add comment