-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.hyper.js
60 lines (51 loc) · 1.13 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
module.exports = {
config: {
fontSize: 18,
fontFamily: '"Fantasque Sans Mono", monospace',
cursorColor: '#2c3e50',
cursorShape: 'BEAM',
cursorBlink: false,
foregroundColor: '#263238',
backgroundColor: '#eee',
borderColor: '#2c3e50',
css: '',
termCSS: '',
showHamburgerMenu: false,
showWindowControls: false,
padding: '1em',
colors: {
black: '#263238',
red: '#f44336',
green: '#4caf50',
yellow: '#ff9800',
blue: '#2196f3',
magenta: '#ab47bc',
cyan: '#26a69a',
white: '#b0bec5',
lightBlack: '#607d8b',
lightRed: '#ef5350',
lightGreen: '#00c853',
lightYellow: '#bcaaa4',
lightBlue: '#42a5f5',
lightMagenta: '#ba68c8',
lightCyan: '#4db6ac',
lightWhite: '#eeeeee'
},
shell: '',
shellArgs: ['--login'],
env: {},
bell: 'SOUND',
copyOnSelect: true,
},
plugins: [
'hyperminimal',
'hyperterm-alternatescroll',
'hyperlinks',
'hyper-pane',
'hyper-simple-highlight-active-session',
],
localPlugins: [],
alternateScroll: {
scrollSpeed: 100,
},
};