Skip to content

Instantly share code, notes, and snippets.

@beldpro-ci
Created April 15, 2017 14:50
Show Gist options
  • Save beldpro-ci/65182e97432b319d25d4a32a9a686ede to your computer and use it in GitHub Desktop.
Save beldpro-ci/65182e97432b319d25d4a32a9a686ede to your computer and use it in GitHub Desktop.
My hypeterm config
module.exports = {
config: {
// default font size for all tabs
fontSize: 14,
// font family with optional fallbacks
fontFamily: 'Hack, "DejaVu Sans Mono", "Lucida Console", monospace',
// terminal cursor background color (hex)
cursorColor: 'rgba(255,255,255,.4)',
// terminal background color (hex)
backgroundColor: '#002b36',
foregroundColor: '#839496',
// border color (window, tabs)
borderColor: '#073642',
bell: false,
// custom css to embed in the main window
css: `
.t_tab.t_active:before,
.tab_tab.tab_active:before {
border-color: #002b36 !important;
}
`,
// custom css to embed inside each terminal
termCSS: '',
colors: [
'#073642',
'#dc322f',
'#859900',
'#b58900',
'#268db2',
'#d33682',
'#2aa198',
'#eee8d5',
'#002b36',
'#cb4b16',
'#586e75',
'#657b83',
'#839496',
'#6c71c4',
'#93a1a1',
'#fdf6e3'
]
},
plugins: [ 'hyper-solarized-light'],
localPlugins: []
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment