Created
September 21, 2017 22:32
-
-
Save ELLIOTTCABLE/6e13466d98f891f5d48afb7bd09c23e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
config: { | |
updateChannel: 'canary', | |
fontSize: 14, | |
windowSize: [960, 540], // aiming for 135 columns wide, 16:9 ratio | |
// font family with optional fallbacks | |
fontFamily: '"Input Nerd Font", Knack, Menlo, "DejaVu Sans Mono", ' | |
+ 'Consolas, "Lucida Console", monospace', | |
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
cursorColor: 'rgba(248,28,229,0.8)', | |
// set to true for blinking cursor | |
cursorBlink: true, | |
//// custom css to embed in the main window | |
//css: '', | |
//// custom css to embed in the terminal window | |
//termCSS: '', | |
base16: { | |
scheme: 'eighties' | |
}, | |
hyperStatusLine: { | |
fontSize: 13, | |
}, | |
hyperBorder: { | |
borderWidth: '2px' | |
, borderAngle: '120deg', | |
}, | |
hyperTabs: { | |
trafficButtons: true | |
, tabIconsColored: true | |
} | |
}, | |
plugins: [ | |
// 'hypercwd' | |
//, 'hyperterm-alternatescroll' | |
//, 'hyperterm-focus-reporting' // Pending brianc/hyperterm-focus-reporting#1 | |
//, 'hyper-tabs-enhanced' | |
//, 'hyper-statusline' | |
//, 'hypersixteen' | |
//, 'hyperborder' | |
//, 'hyperterm-bold-tab' | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment