Skip to content

Instantly share code, notes, and snippets.

@srt0
Created March 24, 2025 15:09
Show Gist options
  • Save srt0/e7d45a58b4182ca5dd08906686f3e5d1 to your computer and use it in GitHub Desktop.
Save srt0/e7d45a58b4182ca5dd08906686f3e5d1 to your computer and use it in GitHub Desktop.
vim keybindings for vscode
{
"vim.leader": "<space>",
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [";"],
"after": [":"]
},
{
"before": ["B"],
"after": ["^"]
},
{
"before": ["E"],
"after": ["$"]
},
{
"before": ["leader", "w"],
"commands": [
"workbench.action.files.save",
]
},
{
"before": ["leader", "b"],
"commands": [
"workbench.action.toggleSidebarVisibility",
]
},
{
"before": ["<C-n>"],
"commands": [
":nohl"
]
}
],
"editor.fontSize": 19,
"editor.cursorBlinking": "solid",
"editor.occurrencesHighlight": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment