hyper/config-default.js
2016-07-08 14:28:08 -07:00

58 lines
1.3 KiB
JavaScript

module.exports = {
config: {
// default font size for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", "Lucida Console", monospace',
// terminal cursor background color (hex)
cursorColor: '#F81CE5',
// terminal background color (hex)
backgroundColor: '#000000',
// border color (winodw, tabs)
borderColor: '#333',
// custom css to embed in the main window
css: [''],
// custom css to embed inside each terminal
termCSS: [''],
// some color overrides. see http://bit.ly/29k1iU2 for
// the full list
colors: [
'#000000',
'#ff0000',
'#33ff00',
'#ffff00',
'#0066ff',
'#cc00ff',
'#00ffff',
'#d0d0d0',
'#808080',
'#ff0000',
'#33ff00',
'#ffff00',
'#0066ff',
'#cc00ff',
'#00ffff',
'#ffffff'
]
},
// a list of plugins to fetch and install from npm
// format: [@org/]project[#version]
// examples:
// `hypersolar`
// `@company/project`
// `project#1.0.1`
plugins: [],
// in development, you can create a directory under
// `~/.hyperterm_modules/local/` and include it here
// to load it and avoid it being `npm install`ed
localPlugins: []
};