Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. module.exports = {
  2. config: {
  3. fontSize: 12,
  4. webGLRenderer: false,
  5. fontFamily: 'FuraCode Nerd Font, Fira Code',
  6. cursorColor: 'rgba(248,28,229,0.8)',
  7. cursorShape: 'BLOCK',
  8. foregroundColor: '#fff',
  9. backgroundColor: '#000',
  10. borderColor: '#333',
  11.  
  12. css: '',
  13. termCSS: '',
  14.  
  15. showHamburgerMenu: '',
  16.  
  17. showWindowControls: '',
  18.  
  19. padding: '12px 14px',
  20. colors: {
  21. black: '#000000',
  22. red: '#ff0000',
  23. green: '#33ff00',
  24. yellow: '#ffff00',
  25. blue: '#0066ff',
  26. magenta: '#cc00ff',
  27. cyan: '#00ffff',
  28. white: '#d0d0d0',
  29. lightBlack: '#808080',
  30. lightRed: '#ff0000',
  31. lightGreen: '#33ff00',
  32. lightYellow: '#ffff00',
  33. lightBlue: '#0066ff',
  34. lightMagenta: '#cc00ff',
  35. lightCyan: '#00ffff',
  36. lightWhite: '#ffffff',
  37. },
  38. shell: 'C:\\Program Files\\Git\\git-cmd.exe',
  39. shellArgs: ['--command=usr/bin/bash.exe', '-l', '-i'],
  40. env: { TERM: 'cygwin' },
  41. bell: 'SOUND',
  42. copyOnSelect: false,
  43.  
  44. // - PLUGINS CONFIGS
  45. hyperline: {
  46. plugins: [
  47. 'hostname',
  48. 'ip',
  49. 'cpu',
  50. 'memory',
  51. 'network',
  52. ],
  53. },
  54.  
  55. summon: {
  56. hideDock: true,
  57. hideOnBlur: true,
  58. hotkey: 'Ctrl+Shift+t',
  59. },
  60. },
  61.  
  62. // a list of plugins to fetch and install from npm
  63. // format: [@org/]project[#version]
  64. // examples:
  65. // `hyperpower`
  66. // `@company/project`
  67. // `project#1.0.1`
  68. plugins: [
  69. 'hyper-font-ligatures',
  70. 'hyperline',
  71. 'hyper-sync-settings',
  72. 'hyper-visual',
  73. 'hyperborder',
  74. 'hyper-night-owl',
  75. 'hyper-search',
  76. 'hyper-pane',
  77. 'hypercwd',
  78. 'hyper-tab-icons',
  79. ],
  80.  
  81. // in development, you can create a directory under
  82. // `~/.hyper_plugins/local/` and include it here
  83. // to load it and avoid it being `npm install`ed
  84. localPlugins: [],
  85. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement