Using hyper terminal on PopOS and Ubuntu. Configuring terminal window.

This commit is contained in:
Bradley 2020-09-16 14:36:48 -07:00
parent 3a4221135d
commit be10ced199

View file

@ -1,23 +1,66 @@
// 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.
module.exports = { module.exports = {
updateChannel: 'canary',
config: { config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'canary',
// default font size in pixels for all tabs // default font size in pixels for all tabs
fontSize: 20, fontSize: 14,
windowSize: [1080, 720], windowSize: [1080, 720],
// font family with optional fallbacks
fontFamily: '"Operator Mono", "Inconsolata for Powerline", monospace', fontFamily: '"Operator Mono", "Inconsolata for Powerline", monospace',
// `'BEAM'` for |, `'UNDERLINE'` for _, `'BLOCK'` for █
cursorShape: 'BLOCK', cursorShape: 'BLOCK',
wickedBorder: true,
// set to `true` (without backticks and without quotes) for blinking cursor
cursorBlink: true,
// custom padding (CSS format, i.e.: `top right bottom left`)
padding: '10px', padding: '10px',
shell: '/bin/zsh', shell: '/bin/zsh',
// 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,
// 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`
plugins: [ plugins: [
'hyperterm-cobalt2-theme', 'hyperterm-cobalt2-theme',
'hyper-statusline',
'hyper-tabs-enhanced'
], ],
// in development, you can create a directory under // in development, you can create a directory under
// `~/.hyperterm_plugins/local/` and include it here // `~/.hyper_plugins/local/` and include it here
// to load it and avoid it being `npm install`ed // to load it and avoid it being `npm install`ed
// localPlugins: ['hyperterm-cobalt2-theme'], localPlugins: [],
keymaps: {
// Example
// 'window:devtools': 'cmd+alt+o',
},
}; };