Skip to content

Instantly share code, notes, and snippets.

@thiagobraga
Created October 18, 2020 13:36
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 thiagobraga/00a451282223ac0ffec4389859b36cc4 to your computer and use it in GitHub Desktop.
Save thiagobraga/00a451282223ac0ffec4389859b36cc4 to your computer and use it in GitHub Desktop.
HyperJS backup settings
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