Last active
April 30, 2018 08:33
-
-
Save yoav-lavi/661ea70a07f9b5281daba776e8753436 to your computer and use it in GitHub Desktop.
(my) Hyper.js Windows config
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
// https://hyper.is#cfg | |
module.exports = { | |
config: | |
{ | |
updateChannel: 'stable', | |
// Fonts | |
fontFamily: 'Consolas', | |
fontSize: 14, | |
// Cursor | |
cursorShape: 'BLOCK', | |
cursorBlink: false, | |
// Shell | |
shell: 'powershell.exe', | |
shellArgs: ["-NoLogo"], | |
env: { TERM: '' }, | |
bell: false, | |
copyOnSelect: true, | |
quickEdit: true, | |
opacity: 0.97 | |
}, | |
// Plugins | |
plugins: ['hyperterm-atom-dark', 'hyperterm-summon', "hyper-opacity"] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment