Created
May 31, 2025 01:49
-
-
Save gchacaltana/5de727538463437d7a989e38e3c0c8d0 to your computer and use it in GitHub Desktop.
Hyper Conf for Mac OS
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
"use strict"; | |
/* | |
Adapted Hyper config for macOS | |
@link https://hyper.is#cfg | |
*/ | |
module.exports = { | |
config: { | |
updateChannel: 'stable', | |
fontSize: 17, | |
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
fontWeight: 'normal', | |
fontWeightBold: 'bold', | |
lineHeight: 1, | |
letterSpacing: 1, | |
cursorColor: 'rgba(255,255,255,0.9)', | |
cursorAccentColor: '#000', | |
cursorShape: 'BEAM', | |
cursorBlink: true, | |
foregroundColor: '#fff', | |
backgroundColor: '#0D1117', | |
selectionColor: 'rgba(248,28,229,0.3)', | |
borderColor: '#737B84', | |
css: '', | |
termCSS: '', | |
workingDirectory: '', | |
showHamburgerMenu: false, | |
showWindowControls: false, | |
padding: '15px 15px', | |
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', | |
limeGreen: '#32CD32', | |
lightCoral: '#F08080', | |
}, | |
// macOS Shell Settings | |
shell: '/bin/zsh', // O usa '/opt/homebrew/bin/fish' si usas fish o '/bin/bash' si prefieres bash | |
shellArgs: ['-l'], | |
env: {}, | |
bell: 'SOUND', | |
copyOnSelect: true, | |
defaultSSHApp: true, | |
macOptionSelectionMode: 'vertical', | |
webGLRenderer: true, | |
disableLigatures: true, | |
disableAutoUpdates: false, | |
screenReaderMode: false, | |
preserveCWD: true, | |
}, | |
plugins: [], | |
localPlugins: [], | |
keymaps: {}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment