Skip to content

Instantly share code, notes, and snippets.

@gchacaltana
Created May 28, 2022 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gchacaltana/772e4d966df0c1f6eafbad8de106bf3e to your computer and use it in GitHub Desktop.
Save gchacaltana/772e4d966df0c1f6eafbad8de106bf3e to your computer and use it in GitHub Desktop.
Hyper Config File - Example Settings
"use strict";
/*
Example Hyper Config
@link https://hyper.is#cfg for all currently supported options.
*/
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: '',
showWindowControls: '',
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',
},
shell: 'C:\\Program Files\\Git\\git-cmd.exe',
shellArgs: ['--command=usr/bin/bash.exe', '-l', '-i'],
env: { TERM: 'cygwin'},
bell: 'SOUND',
copyOnSelect: true,
defaultSSHApp: true,
quickEdit: false,
macOptionSelectionMode: 'vertical',
webGLRenderer: true,
webLinksActivationKey: '',
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