Skip to content

Instantly share code, notes, and snippets.

@theteachr
Last active July 27, 2023 13:21
Show Gist options
  • Save theteachr/3f495b57f12c32f4b318b6367b214255 to your computer and use it in GitHub Desktop.
Save theteachr/3f495b57f12c32f4b318b6367b214255 to your computer and use it in GitHub Desktop.
VSCode Vim Bindings
{
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"<leader>",
"s"
],
"commands": [
"workbench.action.gotoSymbol"
],
"silent": true
},
{
"before": [
"<leader>",
"S"
],
"commands": [
"workbench.action.showAllSymbols"
],
"silent": true
},
{
"before": [
"]",
"d"
],
"commands": [
"editor.action.marker.nextInFiles"
],
"silent": true
},
{
"before": [
"[",
"d"
],
"commands": [
"editor.action.marker.prevInFiles"
],
"silent": true
},
{
"before": [
"K"
],
"commands": [
"lineBreakInsert"
],
"silent": true
}
],
"vim.leader": " ",
"editor.renderFinalNewline": "off",
"files.insertFinalNewline": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment