Skip to content

Instantly share code, notes, and snippets.

@hharnisc
Last active December 18, 2019 01:46
Show Gist options
  • Save hharnisc/464f08f2f06c7bf1af11bc1d2884f9a0 to your computer and use it in GitHub Desktop.
Save hharnisc/464f08f2f06c7bf1af11bc1d2884f9a0 to your computer and use it in GitHub Desktop.
module.exports = {
config: {
// default font size for all tabs
fontSize: 14,
// font family with optional fallbacks
fontFamily: 'Hack, Menlo, "DejaVu Sans Mono", "Lucida Console", monospace',
// terminal cursor background color (hex)
cursorColor: 'rgba(248,28,229,0.75)',
// terminal background color (hex)
backgroundColor: '#000000',
// border color (window, 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'
],
workingDirectory: '~/Documents'
},
// a list of plugins to fetch and install from npm
// format: [@org/]project[#version]
// examples:
// `hypersolar`
// `@company/project`
// `project#1.0.1`
plugins: [
'hyperlink',
'hypercwd',
'hyperterm-1password',
'hyperterm-tab-icons',
'hyperterm-sync-settings'
],
// 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: []
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment