Skip to content

Instantly share code, notes, and snippets.

@Zeko369
Created January 22, 2023 09:26
Show Gist options
  • Save Zeko369/8933cdb16190171b3da63474f17f2fa2 to your computer and use it in GitHub Desktop.
Save Zeko369/8933cdb16190171b3da63474f17f2fa2 to your computer and use it in GitHub Desktop.
{
// "editor.lineNumbers": "relative",
"vim.insertModeKeyBindings": [{ "before": ["j", "k"], "after": ["<Esc>"] }],
"vim.visualModeKeyBindings": [
{ "before": ["B"], "after": ["^"] },
{ "before": ["E"], "after": ["$"] }
],
"vim.normalModeKeyBindings": [
{ "before": ["B"], "after": ["^"] },
{ "before": ["E"], "after": ["$"] },
{ "before": ["r", "n"], "commands": ["editor.action.rename"] }
],
"vim.handleKeys": {
"<C-a>": false,
"<C-c>": false,
"<C-g>": false,
// "<C-v>": false,
"<C-w>": false,
"<C-f>": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment