Created
October 18, 2020 13:36
-
-
Save thiagobraga/00a451282223ac0ffec4389859b36cc4 to your computer and use it in GitHub Desktop.
HyperJS backup 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
module.exports = { | |
config: { | |
fontFamily: 'Fira Code', | |
fontSize: 12, | |
fontWeight: 'normal', | |
fontWeightBold: 'bold', | |
backgroundColor: '#000', | |
borderColor: '#333', | |
foregroundColor: '#fff', | |
selectionColor: 'rgba(255,255,255,0.075)', | |
bell: false, | |
copyOnSelect: false, | |
cursorBlink: true, | |
cursorShape: 'BEAM', | |
defaultSSHApp: true, | |
padding: '12px 14px', | |
shellArgs: ['--login'], | |
showWindowControls: '', | |
updateChannel: 'stable', | |
hypercwd: { | |
initialWorkingDirectory: '~/projetos' | |
}, | |
hyperTabs: { | |
border: true, | |
closeAlign: 'right', | |
tabIconsColored: true | |
}, | |
syncSettings: { | |
quiet: false | |
}, | |
}, | |
plugins: [ | |
'nord-hyper', | |
'hypercwd', | |
'hyper-tabs-enhanced', | |
], | |
keymaps: { | |
'editor:copy': 'ctrl+shift+c', // :( | |
'editor:paste': 'ctrl+v', | |
'pane:splitVertical': 'ctrl+shift+d', | |
'pane:splitHorizontal': 'ctrl+d', | |
'pane:close': 'ctrl+w', | |
'tab:new': 'ctrl+t' | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment