Created
September 30, 2016 07:35
-
-
Save srimajji/f95215dc2282172b440b406e1c1ebe8f 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: '13', | |
| // font family with optional fallbacks | |
| fontFamily: 'System, Consolas, Menlo, "DejaVu Sans Mono", "Lucida Console", monospace', | |
| // terminal cursor background color (hex) | |
| cursorColor: '#48CC00', | |
| // cursor shape BEAM, BLOCK, UNDERLINE | |
| cursorShape: 'BEAM', | |
| // color of the text | |
| foregroundColor: '#FAFAFA', | |
| // terminal background color | |
| backgroundColor: '#000', | |
| // border color (window, tabs) | |
| borderColor: '#333', | |
| // custom css to embed in the main window | |
| css: '', | |
| // custom padding (css format, i.e.: `top right bottom left`) | |
| termCSS: '', | |
| // shell preferences | |
| shell: 'zsh', | |
| // custom padding | |
| padding: '8px 8px', | |
| // window size | |
| windowSize: [700, 400], | |
| // some color overrides. see http://bit.ly/29k1iU2 for | |
| // the full list | |
| colors: [ | |
| '#000000', | |
| '#ff0000', | |
| '#33ff00', | |
| '#ffff00', | |
| '#0066ff', | |
| '#cc00ff', | |
| '#00ffff', | |
| '#d0d0d0', | |
| '#808080', | |
| '#ff0000', | |
| '#33ff00', | |
| '#ffff00', | |
| '#0066ff', | |
| '#cc00ff', | |
| '#00ffff', | |
| '#ffffff' | |
| ] | |
| }, | |
| // a list of plugins to fetch and install from npm | |
| // format: [@org/]project[#version] | |
| // examples: | |
| // `hyperterm-spacegray` | |
| // `@company/project` | |
| // `project#1.0.1` | |
| plugins: [ | |
| 'nova-hyperterm', | |
| 'hypercwd', | |
| 'hyperterm-blink', | |
| 'hyperterm-paste', | |
| "hyperterm-tab-icons", | |
| "hyperline" | |
| ], | |
| // 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