Skip to content

Instantly share code, notes, and snippets.

@djfarrelly
Last active September 19, 2016 20:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djfarrelly/5c9e7292b5abf650c17dc5f1b12faa27 to your computer and use it in GitHub Desktop.
Save djfarrelly/5c9e7292b5abf650c17dc5f1b12faa27 to your computer and use it in GitHub Desktop.
Personal HyperTerm perfs
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 16,
// font family with optional fallbacks
fontFamily: '"Droid Sans Mono For Powerline", "Roboto Mono", 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: `
.tab_tab {
background-color: inherit;
}
`,
// 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'
]*/
},
// a list of plugins to fetch and install from npm
// format: [@org/]project[#version]
// examples:
// `hyperpower`
// `@company/project`
// `project#1.0.1`
plugins: [
'hyperlink',
'hypercwd',
'hyperterm-summon',
'hyperterm-1password',
'hyperterm-material',
'hyperterm-tab-icons',
'hyperterm-sync-settings',
// 'hyperterm-tabs',
],
// 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: [
// 'gitterm'
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment