2016-07-07 05:31:53 -08:00
|
|
|
module.exports = {
|
|
|
|
|
config: {
|
|
|
|
|
// default font size for all tabs
|
2016-07-07 10:15:11 -08:00
|
|
|
fontSize: 12,
|
2016-07-07 05:31:53 -08:00
|
|
|
|
|
|
|
|
// font family with optional fallbacks
|
|
|
|
|
fontFamily: 'Menlo, "DejaVu Sans Mono", "Lucida Console", monospace',
|
|
|
|
|
|
2016-07-07 16:25:38 -08:00
|
|
|
// terminal cursor background color (hex)
|
2016-07-07 05:31:53 -08:00
|
|
|
cursorColor: '#F81CE5',
|
|
|
|
|
|
2016-07-07 16:25:38 -08:00
|
|
|
// terminal background color (hex)
|
2016-07-07 05:31:53 -08:00
|
|
|
backgroundColor: '#000',
|
|
|
|
|
|
|
|
|
|
// 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'
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
|
2016-07-07 10:15:11 -08:00
|
|
|
// 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` and include it as a local
|
|
|
|
|
// plugin to load it and avoid npm installation
|
|
|
|
|
localPlugins: []
|
2016-07-07 05:31:53 -08:00
|
|
|
};
|