This repository has been archived by the owner on May 25, 2022. It is now read-only.
forked from holman/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathhyper.js
71 lines (58 loc) · 1.55 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
65
66
67
68
69
70
71
module.exports = {
config: {
copyOnSelect: true,
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: '"Hasklig", "Inconsolata for Powerline", Menlo, "DejaVu Sans Mono", "Lucida Console", monospace',
// terminal cursor background color (hex)
cursorColor: '#02fdff',
// color of the text
foregroundColor: '#c5c8c6',
// terminal background color
backgroundColor: '#232c31',
// border color (window, tabs)
borderColor: '#3D464B',
// custom css to embed in the main window
css: '',
// custom css to embed in the terminal window
termCSS: `
x-screen x-row {
font-variant-ligatures: initial;
}
`,
// custom padding (css format, i.e.: `top right bottom left`)
padding: '0px 0px',
// some color overrides. see http://bit.ly/29k1iU2 for
// the full list
colors: [
'#2d3c46',
'#a54242',
'#8c9440',
'#de935f',
'#5f819d',
'#85678f',
'#5e8d87',
'#6c7a80',
'#425059',
'#cc6666',
'#b5bd67',
'#f0c674',
'#81a2be',
'#b294ba',
'#8abeb7',
'#c5c8c6'
]
},
// a list of plugins to fetch and install from npm
// format: [@org/]project[#version]
// examples:
// `hyperpower`
// `@company/project`
// `project#1.0.1`
plugins: [],
// 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: []
}