Last active
December 25, 2018 22:44
-
-
Save mauricios/056d5b31f619ec87ed867202b30ac079 to your computer and use it in GitHub Desktop.
Hyper terminal preferences
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 Mono", Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
cursorColor: 'cyan', | |
cursorShape: 'BEAM', | |
cursorBlink: false, | |
foregroundColor: '#ffffff', | |
backgroundColor: '#000000', | |
borderColor: '#000000', | |
showWindowControls: true, | |
padding: '0px 5px', | |
colors: { | |
black: '#17252C', | |
red: '#EC5F67', | |
green: '#99C794', | |
yellow: '#FAC863', | |
blue: '#6699CC', | |
magenta: '#C594C5', | |
cyan: '#5FB3B3', | |
white: '#FFFFFF', | |
lightBlack: '#65737E', | |
lightRed: '#Ec5F67', | |
lightGreen: '#99C794', | |
lightYellow: '#FAC863', | |
lightBlue: '#6699CC', | |
lightMagenta: '#C594C5', | |
lightCyan: '#5FB3B3', | |
lightWhite: '#FFFFFF' | |
}, | |
shell: '', | |
shellArgs: ['--login'], | |
env: {}, | |
bell: false, | |
copyOnSelect: true | |
}, | |
plugins: ["hypercwd", "hyperlinks"], | |
localPlugins: [] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment