Last active
February 11, 2019 18:18
-
-
Save mikaelbalin/8f4b9bfa7c7ef8e3b8ca9cda09d51619 to your computer and use it in GitHub Desktop.
Hyper 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
// 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: 14, | |
// font family with optional fallbacks | |
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
// `'BEAM'` for |, `'UNDERLINE'` for _, `'BLOCK'` for █ | |
cursorShape: 'BEAM', | |
// set to `true` (without backticks and without quotes) for blinking cursor | |
cursorBlink: 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 | |
// | |
// Windows | |
// - Make sure to use a full path if the binary name doesn't work | |
// - Remove `--login` in shellArgs | |
// | |
// Bash on Windows | |
// - Example: `C:\\Windows\\System32\\bash.exe` | |
// | |
// PowerShell on Windows | |
// - Example: `C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe` | |
shell: 'C:\\Windows\\System32\\bash.exe', | |
}, | |
// a list of plugins to fetch and install from npm | |
// format: [@org/]project[#version] | |
// examples: | |
// `hyperpower` | |
// `@company/project` | |
// `project#1.0.1` | |
plugins: ['hyper-afterglow'], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment