mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
* Add support for a `registry` configuration field For those of us using a system-wide private registry, this helps by allowing hyperterm to bypass it when installing/updates plugins. * Use getDecoratedConfig() * registry -> npmRegistry * no message
70 lines
1.6 KiB
JavaScript
70 lines
1.6 KiB
JavaScript
module.exports = {
|
|
config: {
|
|
// default font size in pixels 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',
|
|
|
|
// color of the text
|
|
foregroundColor: '#fff',
|
|
|
|
// terminal background color
|
|
backgroundColor: '#000',
|
|
|
|
// border color (window, tabs)
|
|
borderColor: '#333',
|
|
|
|
// custom css to embed in the main window
|
|
css: '',
|
|
|
|
// custom css to embed in the terminal window
|
|
termCSS: '',
|
|
|
|
// custom padding (css format, i.e.: `top right bottom left`)
|
|
padding: '12px 14px',
|
|
|
|
// 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'
|
|
],
|
|
|
|
// the shell to run when spawning a new session (i.e. /usr/local/bin/fish)
|
|
// if left empty, your system's login shell will be used by default
|
|
shell: ''
|
|
|
|
// for advanced config flags please refer to https://hyperterm.org/#cfg
|
|
},
|
|
|
|
// a list of plugins to fetch and install from npm
|
|
// format: [@org/]project[#version]
|
|
// examples:
|
|
// `hyperpower`
|
|
// `@company/project`
|
|
// `project#1.0.1`
|
|
plugins: [],
|
|
|
|
// in development, you can create a directory under
|
|
// `~/.hyperterm_plugins/local/` and include it here
|
|
// to load it and avoid it being `npm install`ed
|
|
localPlugins: []
|
|
};
|