Skip to content

Instantly share code, notes, and snippets.

@iamstarkov
Created August 31, 2017 13:46
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 iamstarkov/c45ee5a8288ee3e3a8e70ff10c5fc1b5 to your computer and use it in GitHub Desktop.
Save iamstarkov/c45ee5a8288ee3e3a8e70ff10c5fc1b5 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: 'Fira Code',
uiFontFamily: 'Fira Code',
// terminal cursor background color (hex)
cursorColor: '#F81CE5',
// The shape of the caret in the terminal.
// Available options are: 'BEAM', 'UNDERLINE', 'BLOCK'
cursorShape: 'BEAM',
// 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: '',
// custom css to embed in the terminal window
termCSS: `
x-screen x-row {
font-variant-ligatures: initial;
// background-color: black;
}
`,
// custom padding (css format, i.e.: `top right bottom left`)
padding: '3px 4px',
// some color overrides. see http://bit.ly/29k1iU2 for
// the full list
colors: [],
enableVibrancy: true,
copyOnSelect: true,
paneNavigation: {
showIndicators: false,
focusOnMouseHover: true,
},
},
// a list of plugins to fetch and install from npm
// format: [@org/]project[#version]
// examples:
// `hyperpower`
// `@company/project`
// `project#1.0.1`
plugins: ['hyperterm-one-light', 'hypercwd', 'hyper-font-smoothing', 'hyper-simple-highlight-active-session', 'hyperlinks', 'hyper-pane'],
keymaps: {
'tab:prev': 'ctrl+shift+tab',
'tab:next': 'ctrl+tab',
'pane:prev': 'alt+cmd+left',
'pane:next': 'alt+cmd+right',
},
// 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: [
// '/Users/vlasta/projects/hyper-keymap'
],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment