Last active
May 7, 2019 01:22
-
-
Save danielwaltz/3f22c22c375584b394580d55b9fd6e44 to your computer and use it in GitHub Desktop.
Hyper Sync 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: { | |
updateChannel: 'stable', | |
fontSize: 12, | |
fontFamily: "'FuraCode Nerd Font', 'Input Mono', monospace", | |
fontWeight: 'normal', | |
fontWeightBold: 'bold', | |
lineHeight: 1, | |
letterSpacing: 0, | |
cursorColor: 'rgba(255,255,255,0.8)', | |
cursorAccentColor: '#000', | |
cursorShape: 'BLOCK', | |
cursorBlink: false, | |
foregroundColor: '#fff', | |
backgroundColor: '#000', | |
selectionColor: 'rgba(255,255,255,0.3)', | |
borderColor: '#333', | |
css: '', | |
termCSS: '', | |
showHamburgerMenu: '', | |
showWindowControls: '', | |
padding: '8px 14px', | |
colors: { | |
black: '#000000', | |
red: '#C51E14', | |
green: '#1DC121', | |
yellow: '#C7C329', | |
blue: '#0A2FC4', | |
magenta: '#C839C5', | |
cyan: '#20C5C6', | |
white: '#C7C7C7', | |
lightBlack: '#686868', | |
lightRed: '#FD6F6B', | |
lightGreen: '#67F86F', | |
lightYellow: '#FFFA72', | |
lightBlue: '#6A76FB', | |
lightMagenta: '#FD7CFC', | |
lightCyan: '#68FDFE', | |
lightWhite: '#FFFFFF', | |
}, | |
shell: '', | |
shellArgs: ['--login'], | |
bell: false, | |
copyOnSelect: false, | |
defaultSSHApp: true, | |
quickEdit: false, | |
macOptionSelectionMode: 'vertical', | |
webGLRenderer: true, | |
}, | |
plugins: ['hyper-city-lights', 'hyper-font-ligatures', 'hyper-sync-settings'], | |
localPlugins: [], | |
keymaps: { | |
// Example | |
// 'window:devtools': 'cmd+alt+o', | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment