Created
June 9, 2017 20:26
-
-
Save j-f1/11b26a1eedb1f75f1b7b39201074b5e8 to your computer and use it in GitHub Desktop.
Hyper settings
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
// 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: { | |
// default font size in pixels for all tabs | |
fontSize: 12, | |
// font family with optional fallbacks | |
fontFamily: 'Fira Code, Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
// `BEAM` for |, `UNDERLINE` for _, `BLOCK` for █ | |
cursorShape: 'BEAM', | |
// set to true for blinking cursor | |
cursorBlink: true, | |
// color of the text | |
foregroundColor: '#000', | |
// terminal background color | |
backgroundColor: '#fff', | |
// border color (window, tabs) | |
borderColor: '#BBB', | |
// custom css to embed in the main window | |
css: ``, | |
// custom css to embed in the terminal window | |
termCSS: ` | |
x-screen x-row { font-variant-ligatures: initial; } | |
`, | |
enableVibrancy: true, | |
// the shell to run when spawning a new session (i.e. /usr/local/bin/fish) | |
// if left empty, your system's login shell will be used by default | |
// make sure to use a full path if the binary name doesn't work | |
// (e.g `C:\\Windows\\System32\\bash.exe` instead of just `bash.exe`) | |
// if you're using powershell, make sure to remove the `--login` below | |
shell: '', | |
// for setting shell arguments (i.e. for using interactive shellArgs: ['-i']) | |
// by default ['--login'] will be used | |
shellArgs: ['--login'], | |
// for environment variables | |
env: {}, | |
// set to false for no bell | |
bell: false, | |
// if true, selected text will automatically be copied to the clipboard | |
copyOnSelect: false, | |
// if true, on right click selected text will be copied or pasted if no | |
// selection is present (true by default on Windows) | |
// quickEdit: true | |
// for advanced config flags please refer to https://hyper.is/#cfg | |
}, | |
// a list of plugins to fetch and install from npm | |
// format: [@org/]project[#version] | |
// examples: | |
// `hyperpower` | |
// `@company/project` | |
// `project#1.0.1` | |
plugins: [ | |
"hyperterm-paste", | |
"hyperterm-alternatescroll", | |
"hyperterm-tabs", | |
"hyper-sync-settings", | |
"hyperlinks", | |
"hyper-one-light", | |
"hyperterm-final-say" | |
], | |
// 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