improve config defaults

This commit is contained in:
Guillermo Rauch 2016-07-07 11:15:11 -07:00
parent 7fbe019a22
commit 0bb26b9c5b

View file

@ -1,7 +1,7 @@
module.exports = { module.exports = {
config: { config: {
// default font size for all tabs // default font size for all tabs
fontSize: '12px', fontSize: 12,
// font family with optional fallbacks // font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", "Lucida Console", monospace', fontFamily: 'Menlo, "DejaVu Sans Mono", "Lucida Console", monospace',
@ -34,5 +34,16 @@ module.exports = {
] ]
}, },
plugins: [] // 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: []
}; };