Skip to content

Instantly share code, notes, and snippets.

@matchai
Last active October 3, 2016 12:33
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 matchai/9836c2ccd092f9af5757ec443e1baa52 to your computer and use it in GitHub Desktop.
Save matchai/9836c2ccd092f9af5757ec443e1baa52 to your computer and use it in GitHub Desktop.
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 13,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", "Lucida Console", monospace',
// `BEAM` for |, `UNDERLINE` for _, `BLOCK` for █
cursorShape: 'BLOCK',
// terminal background color
backgroundColor: '#CC282c34',
// terminal border color
borderColor: '#333',
// custom css to embed in the main window
css: `
.header_header {
background: transparent!important;
}
`,
// hotkey to open hyperterm visor
overlay: {
animate: false,
hotkeys: ['Alt+Tab'],
hideDock: true,
size: 0.6,
tray: false,
unique: false
}
},
// a list of plugins to fetch and install from npm
// format: [@org/]project[#version]
// examples:
// `hyperpower`
// `@company/project`
// `project#1.0.1`
plugins: [
"hyperterm-atom-dark",
"hyperterm-1password",
"hyperterm-close-on-left",
"hyperterm-alternatescroll",
"hyperterm-paste",
"hyperterm-overlay",
"hyperterm-sync-settings",
"hyperterm-final-say"
],
// 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: []
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment