-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.hyper.js
30 lines (30 loc) · 990 Bytes
/
.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
// HyperTerm, installed as a joke: https://hyper.is#cfg
module.exports = {
keymaps: {},
plugins: [],
localPlugins: [], // Devlinks: ~/.hyper_plugins/local/
config: {
updateChannel: "stable",
fontSize: 14,
fontFamily: 'Menlig, Menlo, Menloco, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
fontWeight: "normal",
fontWeightBold: "bold",
lineHeight: 1,
letterSpacing: 0,
cursorColor: "#606060",
cursorAccentColor: "#000",
cursorShape: "BEAM",
cursorBlink: false,
foregroundColor: "#fff",
backgroundColor: "rgba(0,0,0,0.85)",
selectionColor: "rgba(82,82,82)",
borderColor: "#333",
padding: "12px 14px",
css: "", // Custom CSS (main window)
termCSS: "", // custom CSS (terminal window)
env: {}, // Environment variables
bell: false,
defaultSSHApp: false,
webGLRenderer: true,
},
};