mirror of
https://github.com/BradNut/dotfiles
synced 2025-09-08 17:40:19 +00:00
Adding plugins to hyper and moving back to stable.
This commit is contained in:
parent
653afa2c8a
commit
2aefb9c0f7
1 changed files with 23 additions and 2 deletions
25
.hyper.js
25
.hyper.js
|
|
@ -6,7 +6,7 @@ module.exports = {
|
||||||
config: {
|
config: {
|
||||||
// choose either `'stable'` for receiving highly polished,
|
// choose either `'stable'` for receiving highly polished,
|
||||||
// or `'canary'` for less polished but more frequent updates
|
// or `'canary'` for less polished but more frequent updates
|
||||||
updateChannel: 'canary',
|
updateChannel: 'stable',
|
||||||
|
|
||||||
// default font size in pixels for all tabs
|
// default font size in pixels for all tabs
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
|
|
@ -40,6 +40,25 @@ module.exports = {
|
||||||
|
|
||||||
// change the colour here
|
// change the colour here
|
||||||
wickedBorderColor: '#ffc600',
|
wickedBorderColor: '#ffc600',
|
||||||
|
|
||||||
|
hyperTabs: {
|
||||||
|
tabIconsColored: true,
|
||||||
|
},
|
||||||
|
|
||||||
|
hypercwd: {
|
||||||
|
initialWorkingDirectory: '~/projects'
|
||||||
|
},
|
||||||
|
|
||||||
|
hyperTabs: {
|
||||||
|
// The height(unit px) of zone over tabs to drag the window
|
||||||
|
navMoveable: 0,
|
||||||
|
// The hotkeys of move tabs
|
||||||
|
hotkeys: {
|
||||||
|
moveLeft: 'command+[',
|
||||||
|
moveRight: ['command+]', 'r i g h t']
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// a list of plugins to fetch and install from npm
|
// a list of plugins to fetch and install from npm
|
||||||
|
|
@ -51,7 +70,9 @@ module.exports = {
|
||||||
plugins: [
|
plugins: [
|
||||||
'hyperterm-cobalt2-theme',
|
'hyperterm-cobalt2-theme',
|
||||||
'hyper-statusline',
|
'hyper-statusline',
|
||||||
'hyper-tabs-enhanced'
|
'hyper-tabs-enhanced',
|
||||||
|
'hyper-reorderable-tabs',
|
||||||
|
'hypercwd',
|
||||||
],
|
],
|
||||||
|
|
||||||
// in development, you can create a directory under
|
// in development, you can create a directory under
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue