Last active
May 6, 2018 20:49
-
-
Save danielwrobert/e5eb6b1302e75d2024c8d62e5457801a to your computer and use it in GitHub Desktop.
My Hyper Terminal config - https://hyper.is/
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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
updateChannel: 'canary', | |
// default font size in pixels for all tabs | |
fontSize: 14, | |
windowSize: [1080, 720], | |
fontFamily: '"Monaco for Powerline", "Operator Mono", monospace', | |
cursorShape: 'BLOCK', | |
padding: '10px', | |
}, | |
// a list of plugins to fetch and install from npm | |
// format: [@org/]project[#version] | |
// examples: | |
// `hyperpower` | |
// `@company/project` | |
// `project#1.0.1` | |
plugins: ['hyperterm-base-16-ocean'], | |
// in development, you can create a directory under | |
// `~/.hyper_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