-
Notifications
You must be signed in to change notification settings - Fork 3
/
.hyper.js
64 lines (63 loc) · 1.61 KB
/
.hyper.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// 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 = {
config: {
updateChannel: 'stable',
fontSize: 15,
fontFamily: '"Fira Mono for Powerline", "Lucida Console", monospace',
cursorColor: 'rgba(248,28,229,0.8)',
cursorShape: 'BLOCK', // `BEAM` for |, `UNDERLINE` for _, `BLOCK` for █
cursorBlink: false,
foregroundColor: '#fff',
backgroundColor: '#282A36',
borderColor: '#333',
padding: '12px 14px',
colors: {
black: '#000000',
red: '#ff0000',
green: '#33ff00',
yellow: '#ffff00',
blue: '#0066ff',
magenta: '#cc00ff',
cyan: '#00ffff',
white: '#d0d0d0',
lightBlack: '#808080',
lightRed: '#ff0000',
lightGreen: '#33ff00',
lightYellow: '#ffff00',
lightBlue: '#0066ff',
lightMagenta: '#cc00ff',
lightCyan: '#00ffff',
lightWhite: '#ffffff'
},
shell: '/usr/local/bin/bash',
shellArgs: ['--login'],
env: {},
bell: 'SOUND',
copyOnSelect: false,
hyperTabs: {
trafficButtons: true,
border: true,
tabIconsColored: true,
activityColor: "#ED8492",
closeAlign: 'right',
}
// bellSoundURL: 'http://example.com/bell.mp3',
},
plugins: [
"hypercwd",
"hyper-tabs-enhanced",
"hyper-chesterish",
"hyper-statusline",
"hyper-confirm",
"hyper-quit",
"hyperlinks",
"hyper-snazzy"
],
localPlugins: [],
keymaps: {
// Example
// 'window:devtools': 'cmd+alt+o',
}
};