forked from mathiasbynens/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.hyper.js
64 lines (51 loc) · 1.37 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
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 18,
// font family with optional fallbacks
fontFamily: 'Source Code Pro, Menlo, "DejaVu Sans Mono", "Lucida Console", monospace',
// terminal cursor background color (hex)
cursorColor: '#F81CE5',
// color of the text
foregroundColor: '#fff',
// terminal background color
backgroundColor: '#000',
// border color (window, tabs)
borderColor: '#333',
// custom css to embed in the main window
css: '',
// custom padding (css format, i.e.: `top right bottom left`)
termCSS: '',
// custom padding
padding: '12px 14px',
// Hyperterm Summon
// summonShortcut: '`',
hyperSpotify: {
position: 'bottom' // or 'top'
},
summon: {
hideDock: true,
hideOnBlur: false,
hotkey: '`'
}
},
// a list of plugins to fetch and install from npm
// format: [@org/]project[#version]
// examples:
// `hypersolar`
// `@company/project`
// `project#1.0.1`
plugins: [
'hyperterm-blink',
'hyperterm-summon',
'hyper-zero-dark-matrix',
'hyper-quit',
'hyper-spotify',
'hypercwd'
],
// in development, you can create a directory under
// `~/.hyperterm_plugins/local/` and include it here
// to load it and avoid it being `npm install`ed
localPlugins: [
]
};