Last active
June 13, 2021 23:00
-
-
Save guilhermecapitao/14a0dc50551934b9c0d5b3ca1da76a9e to your computer and use it in GitHub Desktop.
Hyper terminal
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
module.exports = { | |
config: { | |
updateChannel: 'stable', | |
fontSize: 12, | |
fontFamily: "JetBrains Mono", | |
fontWeight: 'normal', | |
fontWeightBold: 'bold', | |
lineHeight: 1, | |
letterSpacing: 0, | |
cursorColor: 'rgba(248,28,229,0.8)', | |
cursorAccentColor: '#000', | |
cursorShape: 'BLOCK', | |
cursorBlink: false, | |
foregroundColor: '#fff', | |
backgroundColor: '#000', | |
selectionColor: 'rgba(248,28,229,0.3)', | |
css: '', | |
termCSS: '', | |
showHamburgerMenu: '', | |
showWindowControls: '', | |
padding: '12px 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'], | |
env: {}, | |
bell: 'SOUND', | |
copyOnSelect: false, | |
defaultSSHApp: true, | |
quickEdit: false, | |
macOptionSelectionMode: 'vertical', | |
webGLRenderer: true, | |
hyperBorder: { | |
borderColors: ['#FF79C6', '#8257E5', '#04D361'], | |
borderWidth: '2.5px', | |
borderRadiusInner: '0px', | |
// borderRadiusOuter: '5px', | |
// animate: { duration: '5000'} | |
}, | |
hyperCustomControls: { | |
side: 'right', | |
circleSize: 11, | |
circleGap: 7.5, | |
distanceToSide: 15, | |
opacity: 1, | |
hoverOpacity: 0.8, | |
controls: [ | |
{ | |
type: 'minimize', | |
color: '#FBC536', | |
}, | |
{ | |
type: 'maximize', | |
color: '#39EA48', | |
}, | |
{ | |
type: 'close', | |
color: '#F24F55', | |
}, | |
], | |
}, | |
// for advanced config flags please refer to https://hyper.is/#cfg | |
}, | |
plugins: ["hyperborder", "hyper-custom-controls"], | |
localPlugins: ['dracula-pro'], | |
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