Skip to content

Instantly share code, notes, and snippets.

@jbaxleyiii
Created January 29, 2017 20:28
Show Gist options
  • Save jbaxleyiii/0cd4dbdc3fe9729100230852b576e6e2 to your computer and use it in GitHub Desktop.
Save jbaxleyiii/0cd4dbdc3fe9729100230852b576e6e2 to your computer and use it in GitHub Desktop.
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 14,
// font family with optional fallbacks
fontFamily: 'Operator Mono, Ubuntu Mono, monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: '#C59DF0',
// `BEAM` for |, `UNDERLINE` for _, `BLOCK` for █
cursorShape: 'UNDERLINE',
// color of the text
foregroundColor: 'rgba(255, 255, 255, .9)',
// terminal background color
backgroundColor: 'rgba(0,0,0,.99)',
// border color (window, tabs)
borderColor: '#474F59',
// 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',
// the full list. if you're going to provide the full color palette,
// including the 6 x 6 color cubes and the grayscale map, just provide
// an array here instead of a color map object
colors: {
black: '#474F59',
red: '#ff875f',
green: '#C8CB79',
yellow: '#C59df0',
blue: '#5fafd7',
magenta: '#C59DF0',
cyan: '#5fffff',
white: '#f7f7f7',
lightBlack: '#474F59',
lightGreen: '#C8CB79',
lightYellow: '#c59dF0',
lightBlue: '#00ffff',
lightMagenta: '#C59DF0',
lightCyan: '#00ffff',
lightWhite: '#ECEEEF'
},
// 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: 'C:\\Windows\\System32\\bash.exe',
// for advanced config flags please refer to https://hyperterm.org/#cfg
shellArgs: ['-c', 'zsh', '-i', '-l'],
},
// a list of plugins to fetch and install from npm
// format: [@org/]project[#version]
// examples:
// `hyperpower`
// `@company/project`
// `project#1.0.1`
plugins: [
// 'hyperterm-dibdabs',
'hypercwd',
'hyperterm-tab-icons',
'hyperterm-cursor',
'hyperterm-working-directory',
'hyperterm-tabs',
// // 'hyperterm-open-devtools',
// 'hyper-simple-vibrancy',
// // "hyperlayout"
],
// 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: [],
// summonShortcut: 'Cmd+Space',
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment