Skip to content

Instantly share code, notes, and snippets.

@L1fescape
Last active May 18, 2022 17:14
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 L1fescape/b1bbcaed38452a23ad58b002e77c160d to your computer and use it in GitHub Desktop.
Save L1fescape/b1bbcaed38452a23ad58b002e77c160d to your computer and use it in GitHub Desktop.
vscode settings
// Place your key bindings in this file to override the defaults
[
{ "key": "cmd+h", "when": "editorFocus", "command": "workbench.action.previousEditor" },
{ "key": "cmd+l", "when": "editorFocus", "command": "workbench.action.nextEditor" },
{ "key": "cmd+shift+h", "command": "workbench.action.terminal.focusPrevious" },
{ "key": "cmd+shift+l", "command": "workbench.action.terminal.focusNext" },
{ "key": "cmd+t", "when": "terminalFocus", "command": "workbench.action.terminal.new" },
{ "key": "cmd+w", "when": "terminalFocus", "command": "workbench.action.terminal.kill" },
{ "key": "cmd+h", "when": "terminalFocus", "command": "workbench.action.terminal.focusPrevious" },
{ "key": "cmd+l", "when": "terminalFocus", "command": "workbench.action.terminal.focusNext" },
{ "key": "cmd+]", "when": "editorFocus", "command": "workbench.action.navigateForward" },
{ "key": "cmd+[", "when": "editorFocus", "command": "workbench.action.navigateBack" },
]
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"editor.cursorBlinking": "solid",
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["L"],
"after": [],
"commands": [
{
"command": "workbench.action.nextEditor",
"args": []
}
]
},{
"before": ["H"],
"after": [],
"commands": [
{
"command": "workbench.action.previousEditor",
"args": []
}
]
}
],
"window.zoomLevel": 0,
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"editor.renderControlCharacters": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment