76 lines
1.2 KiB
JavaScript
76 lines
1.2 KiB
JavaScript
module.exports = {
|
|
config: {
|
|
fontSize: 12,
|
|
|
|
fontFamily: 'Hack, "DejaVu Sans Mono", "Lucida Console", monospace',
|
|
|
|
cursorColor: 'rgba(55, 59, 65, 0.75)',
|
|
|
|
cursorShape: 'BLOCK',
|
|
|
|
foregroundColor: '#C5C8C6',
|
|
|
|
backgroundColor: '#1D1F21',
|
|
|
|
borderColor: '#373B41',
|
|
|
|
// Hide the tab bar
|
|
css: `
|
|
.header_header {
|
|
display: none;
|
|
}
|
|
|
|
.terms_terms {
|
|
margin-top: 0;
|
|
}
|
|
`,
|
|
|
|
termCSS: '',
|
|
|
|
padding: '12px 14px',
|
|
|
|
colors: [
|
|
"#1d1f21",
|
|
"#cc6666",
|
|
"#b5bd68",
|
|
"#f0c674",
|
|
"#81a2be",
|
|
"#b57880",
|
|
"#8abeb7",
|
|
"#282a2e",
|
|
"#969896",
|
|
"#cc6666",
|
|
"#b5bd68",
|
|
"#f0c674",
|
|
"#81a2be",
|
|
"#b57880",
|
|
"#8abeb7",
|
|
"#ffffff",
|
|
"#c5c8c6"
|
|
],
|
|
|
|
shell: '',
|
|
|
|
shellArgs: ['--login'],
|
|
|
|
env: {},
|
|
|
|
bell: false,
|
|
|
|
copyOnSelect: false
|
|
|
|
// URL to custom bell
|
|
// bellSoundURL: 'http://example.com/bell.mp3',
|
|
|
|
// for advanced config flags please refer to https://hyperterm.org/#cfg
|
|
},
|
|
|
|
plugins: [
|
|
//"hyperterm-tomorrow-night"
|
|
],
|
|
|
|
// 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: []
|
|
};
|