Created
July 18, 2016 08:07
-
-
Save fredericmarx/ac3f8f93ae92172463856a1303447597 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: { | |
// default font size in pixels for all tabs | |
fontSize: 15, | |
// font family with optional fallbacks | |
fontFamily: '"Input Mono", Menlo, "DejaVu Sans Mono", "Lucida Console", monospace', | |
// terminal cursor background color (hex) | |
cursorColor: 'rgba(255,255,255,.4)', | |
// color of the text | |
foregroundColor: '#fff', | |
// terminal background color | |
backgroundColor: '#1f4662', | |
// border color (window, tabs) | |
borderColor: '#0D3A58', | |
// custom css to embed in the main window | |
css: ` | |
.tabs_nav { | |
background: #0D3A58; | |
} | |
.tab_active { | |
background: #1f4662 !important; | |
} | |
.tab_active:before { | |
border-color: #1f4662 !important; | |
} | |
`, | |
// custom css to embed in the terminal window | |
termCSS: '', | |
// custom padding (css format, i.e.: `top right bottom left`) | |
padding: '12px 14px', | |
// some color overrides. see http://bit.ly/29k1iU2 for | |
// the full list | |
colors: [ | |
'#000000', | |
'#FF628C', | |
'#33ff00', | |
'#ffc600', | |
'#0066ff', | |
'#FB94FF', | |
'#9EFFFF', | |
'#d0d0d0', | |
'#808080', | |
'#FF628C', | |
'#33ff00', | |
'#ffc600', | |
'#0066ff', | |
'#FB94FF', | |
'#9EFFFF', | |
'#ffffff' | |
] | |
}, | |
// a list of plugins to fetch and install from npm | |
// format: [@org/]project[#version] | |
// examples: | |
// `hypersolar` | |
// `@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: [] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment