2020-09-16 21:36:48 +00:00
|
|
|
// Future versions of Hyper may add additional config options,
|
|
|
|
|
// which will not automatically be merged into this file.
|
|
|
|
|
// See https://hyper.is#cfg for all currently supported options.
|
|
|
|
|
|
2020-01-05 20:28:45 +00:00
|
|
|
module.exports = {
|
|
|
|
|
config: {
|
2020-09-16 21:36:48 +00:00
|
|
|
// choose either `'stable'` for receiving highly polished,
|
|
|
|
|
// or `'canary'` for less polished but more frequent updates
|
|
|
|
|
updateChannel: 'canary',
|
|
|
|
|
|
2020-01-05 20:28:45 +00:00
|
|
|
// default font size in pixels for all tabs
|
2020-09-16 21:36:48 +00:00
|
|
|
fontSize: 14,
|
|
|
|
|
|
2020-01-05 20:28:45 +00:00
|
|
|
windowSize: [1080, 720],
|
2020-09-16 21:36:48 +00:00
|
|
|
|
|
|
|
|
// font family with optional fallbacks
|
2020-01-05 20:28:45 +00:00
|
|
|
fontFamily: '"Operator Mono", "Inconsolata for Powerline", monospace',
|
2020-09-16 21:36:48 +00:00
|
|
|
|
|
|
|
|
// `'BEAM'` for |, `'UNDERLINE'` for _, `'BLOCK'` for █
|
2020-01-05 20:28:45 +00:00
|
|
|
cursorShape: 'BLOCK',
|
2020-09-16 21:36:48 +00:00
|
|
|
|
|
|
|
|
// set to `true` (without backticks and without quotes) for blinking cursor
|
|
|
|
|
cursorBlink: true,
|
|
|
|
|
|
|
|
|
|
// custom padding (CSS format, i.e.: `top right bottom left`)
|
2020-01-05 20:28:45 +00:00
|
|
|
padding: '10px',
|
2020-09-16 21:36:48 +00:00
|
|
|
|
2020-01-05 20:28:45 +00:00
|
|
|
shell: '/bin/zsh',
|
|
|
|
|
|
2020-09-16 21:36:48 +00:00
|
|
|
// if `true` (without backticks and without quotes), selected text will automatically be copied to the clipboard
|
|
|
|
|
copyOnSelect: `true`,
|
|
|
|
|
|
|
|
|
|
// Whether to use the WebGL renderer. Set it to false to use canvas-based
|
|
|
|
|
// rendering (slower, but supports transparent backgrounds)
|
|
|
|
|
webGLRenderer: true,
|
2020-01-05 20:28:45 +00:00
|
|
|
|
2020-09-16 21:36:48 +00:00
|
|
|
// for advanced config flags please refer to https://hyper.is/#cfg
|
|
|
|
|
// omit or set true to show. set false to remove it
|
|
|
|
|
wickedBorder: false,
|
|
|
|
|
|
|
|
|
|
// change the colour here
|
|
|
|
|
wickedBorderColor: '#ffc600',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// a list of plugins to fetch and install from npm
|
|
|
|
|
// format: [@org/]project[#version]
|
|
|
|
|
// examples:
|
|
|
|
|
// `hyperpower`
|
|
|
|
|
// `@company/project`
|
|
|
|
|
// `project#1.0.1`
|
2020-01-05 20:28:45 +00:00
|
|
|
plugins: [
|
|
|
|
|
'hyperterm-cobalt2-theme',
|
2020-09-16 21:36:48 +00:00
|
|
|
'hyper-statusline',
|
|
|
|
|
'hyper-tabs-enhanced'
|
2020-01-05 20:28:45 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
// in development, you can create a directory under
|
2020-09-16 21:36:48 +00:00
|
|
|
// `~/.hyper_plugins/local/` and include it here
|
2020-01-05 20:28:45 +00:00
|
|
|
// to load it and avoid it being `npm install`ed
|
2020-09-16 21:36:48 +00:00
|
|
|
localPlugins: [],
|
|
|
|
|
|
|
|
|
|
keymaps: {
|
|
|
|
|
// Example
|
|
|
|
|
// 'window:devtools': 'cmd+alt+o',
|
|
|
|
|
},
|
2020-01-05 20:28:45 +00:00
|
|
|
};
|