Skip to content

Instantly share code, notes, and snippets.

@MCluck90
Last active March 8, 2019 20:45
Show Gist options
  • Save MCluck90/d5a082d197e0157179a47a5291c7eb29 to your computer and use it in GitHub Desktop.
Save MCluck90/d5a082d197e0157179a47a5291c7eb29 to your computer and use it in GitHub Desktop.
Vim VS Code settings
{
...,
"vim.handleKeys": {
"<C-k>": false,
"<C-w>": false,
"<C-r>": false,
"<C-b>": false,
"<C-v>": false
},
...,
"vim.insertModeKeyBindings": [
{
"before": [
"f",
"d"
],
"after": [
"<Esc>"
]
},
{
"before": [
"<C-a>"
],
"after": [
"<Esc>",
"g",
"g",
"V",
"G"
]
}
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment