Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. module.exports = {
  2. config: {
  3. opacity: 0.75,
  4. updateChannel: 'stable',
  5. fontSize: 12,
  6. fontFamily: 'Hack, Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
  7. uiFontFamily: 'Hack, Consolas',
  8. fontWeight: 'normal',
  9. fontWeightBold: 'bold',
  10. cursorColor: 'rgba(248,28,229,0.8)',
  11. cursorAccentColor: '#000',
  12. cursorShape: 'BEAM',
  13. cursorBlink: true,
  14. foregroundColor: '#fff',
  15. backgroundColor: '#000',
  16. selectionColor: 'rgba(150,200,229,0.3)',
  17. borderColor: '#333',
  18. css: '',
  19. termCSS: '',
  20. showHamburgerMenu: '',
  21. showWindowControls: '',
  22. padding: '12px 14px',
  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. shell: 'C:\\Windows\\System32\\wsl.exe',
  42. shellArgs: [],
  43. env: {},
  44. bell: false,
  45. copyOnSelect: false,
  46. defaultSSHApp: true,
  47. hyperTabs: {
  48. trafficButtons: true,
  49. tabIconsColored: true,
  50. activityColor: '#CCC',
  51. closeAlign: 'right',
  52. },
  53. scrollback: 2000,
  54. syncSettings: {
  55. quiet: false
  56. }
  57. },
  58.  
  59. plugins: ["hyper-flat", "hyper-pane", "hyper-opacity", "hyper-sync-settings"],
  60. localPlugins: [],
  61. keymaps: {
  62. 'window:devtools': 'cmd+alt+o',
  63. },
  64. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement