Last active
October 3, 2016 12:33
-
-
Save matchai/9836c2ccd092f9af5757ec443e1baa52 to your computer and use it in GitHub Desktop.
automatic update by https://github.com/dfrankland/hyperterm-sync-settings
This file contains 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: 'Menlo, "DejaVu Sans Mono", "Lucida Console", monospace', | |
// `BEAM` for |, `UNDERLINE` for _, `BLOCK` for █ | |
cursorShape: 'BLOCK', | |
// terminal background color | |
backgroundColor: '#CC282c34', | |
// terminal border color | |
borderColor: '#333', | |
// custom css to embed in the main window | |
css: ` | |
.header_header { | |
background: transparent!important; | |
} | |
`, | |
// hotkey to open hyperterm visor | |
overlay: { | |
animate: false, | |
hotkeys: ['Alt+Tab'], | |
hideDock: true, | |
size: 0.6, | |
tray: false, | |
unique: false | |
} | |
}, | |
// a list of plugins to fetch and install from npm | |
// format: [@org/]project[#version] | |
// examples: | |
// `hyperpower` | |
// `@company/project` | |
// `project#1.0.1` | |
plugins: [ | |
"hyperterm-atom-dark", | |
"hyperterm-1password", | |
"hyperterm-close-on-left", | |
"hyperterm-alternatescroll", | |
"hyperterm-paste", | |
"hyperterm-overlay", | |
"hyperterm-sync-settings", | |
"hyperterm-final-say" | |
], | |
// 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