Skip to content

Instantly share code, notes, and snippets.

@mikowl
Created November 17, 2018 01:30
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 mikowl/235536339f607ef46acca0a239efb9d2 to your computer and use it in GitHub Desktop.
Save mikowl/235536339f607ef46acca0a239efb9d2 to your computer and use it in GitHub Desktop.
My hyper.js settings
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 14,
// font family with optional fallbacks
fontFamily: '"Source Code Pro", Menlo, "DejaVu Sans Mono", "Lucida Console", monospace',
// default font weight: 'normal' or 'bold'
fontWeight: 'normal',
// font weight for bold characters: 'normal' or 'bold'
fontWeightBold: 'bold',
// terminal cursor background color (hex)
cursorColor: '#f65d5b',
cursorBlink: false,
// terminal text color under BLOCK cursor
cursorAccentColor: '#000',
// `'BEAM'` for |, `'UNDERLINE'` for _, `'BLOCK'` for █
cursorShape: 'BEAM',
// color of the text
foregroundColor: '#fff',
// terminal background color
backgroundColor: 'rgba(27,37,41,1)',
// border color (window, tabs)
borderColor: '#333',
windowSize: [960, 600],
// 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',
hyperBorder: {
borderWidth: '4px'
},
// 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: [
'hyper-material-theme',
'hyperborder',
'hypercwd',
'hyper-tab-icons',
'hyper-tabs-enhanced',
'hyper-statusline'
],
shell: 'zsh',
// Set the rgba() app background opacity, useful when enableVibrance is true
// OPTIONS: From 0.1 to 1
backgroundOpacity: '0.8',
// Set the accent color for the current active tab
accentColor: '#64FFDA',
// Mac Only. Need restart. Enable the dark vibrance and blurred background
// NOTE: The backgroundOpacity should be between 0.1 and 0.9 to see the effect.
enableVibrance: true,
// 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