Last active
September 28, 2016 20:12
-
-
Save kevinSuttle/2f680f9fbaf2fd324551910bb5c0345a to your computer and use it in GitHub Desktop.
Hyperterm config
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: { | |
// default font size in pixels for all tabs | |
fontSize: '21', | |
// font family with optional fallbacks | |
fontFamily: 'Input Mono, Menlo, "DejaVu Sans Mono", "Lucida Console", monospace', | |
// terminal cursor background color (hex) | |
cursorColor: '#f4d300', | |
cursorShape: 'BEAM', | |
// color of the text | |
foregroundColor: '#fff', | |
// terminal background color | |
backgroundColor: '#173448', | |
// border color (window, tabs) | |
borderColor: '#1f4562', | |
// custom css to embed in the main window | |
css: '', | |
// custom css to embed in the terminal window | |
termCSS: '', | |
// custom padding (css format, i.e.: `top right bottom left`) | |
padding: '16px 20px 48px 20px', | |
// some color overrides. see http://bit.ly/29k1iU2 for | |
// the full list | |
colors: [ | |
'#000000', | |
'#ff0000', | |
'#33ff00', | |
'#ffff00', | |
'#efefef', | |
'#1bcef8', | |
'#00ffff', | |
'#d0d0d0', | |
'#808080', | |
'#ff0000', | |
'#33ff00', | |
'#ffff00', | |
'#0066ff', | |
'#cc00ff', | |
'#00ffff', | |
'#ffffff' | |
], | |
initialWindows: '3', | |
initialWindowsPosition:[ | |
{x: 0, y: 0, width: 800, height: 500}, | |
{x: 0, y: 550, width: 900, height: 400}, | |
{x: 800, y: 0, width: 700, height: 500} | |
], | |
}, | |
plugins: [ | |
'hyperterm-initial-windows', | |
'hyperterm-blink' | |
], | |
// 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: [] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment