Last active
July 17, 2017 20:13
-
-
Save codepunkt/c01ddeee8448664016ef28df83cad490 to your computer and use it in GitHub Desktop.
hyper config (windows)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
config: { | |
fontSize: 14, | |
fontFamily: | |
'"Fira Code", Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
cursorColor: 'rgba(255,255,255,0.8)', | |
cursorShape: 'BEAM', | |
foregroundColor: '#fff', | |
backgroundColor: '#000', | |
borderColor: '#666', | |
css: '', | |
termCSS: '', | |
showHamburgerMenu: true, | |
showWindowControls: true, | |
padding: '12px 14px', | |
colors: { | |
black: '#000000', | |
red: '#ff0000', | |
green: '#33ff00', | |
yellow: '#ffff00', | |
blue: '#0066ff', | |
magenta: '#cc00ff', | |
cyan: '#00ffff', | |
white: '#d0d0d0', | |
lightBlack: '#808080', | |
lightRed: '#ff0000', | |
lightGreen: '#33ff00', | |
lightYellow: '#ffff00', | |
lightBlue: '#0066ff', | |
lightMagenta: '#cc00ff', | |
lightCyan: '#00ffff', | |
lightWhite: '#ffffff', | |
}, | |
shell: 'C:\\Windows\\System32\\bash.exe', | |
shellArgs: ['--login', '-c', 'zsh', '-i', '-l'], | |
env: {}, | |
bell: false, | |
copyOnSelect: true, | |
}, | |
plugins: [ | |
'hyperpower', | |
'hyperline', | |
'hyper-snazzy', | |
'hyperterm-atom-dark', // hyper-one-light | |
'hyper-dark-scrollbar', | |
'hyper-hide-title', | |
], | |
localPlugins: [], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment