Skip to content

Instantly share code, notes, and snippets.

@zachgoll
Created December 10, 2022 23:08
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 zachgoll/4d80f5ab71648832596cd46eec03beda to your computer and use it in GitHub Desktop.
Save zachgoll/4d80f5ab71648832596cd46eec03beda to your computer and use it in GitHub Desktop.
{
"vim.easymotion": true,
"vim.incsearch": true,
"vim.insertModeKeyBindings": [{ "before": ["j", "k"], "after": ["<Esc>"] }],
"vim.useSystemClipboard": true,
"vim.overrideCopy": false,
"vim.useCtrlKeys": false,
"vim.handleKeys": {
"<C-BS>": false,
"<C-d>": false
},
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["J"],
"commands": ["editor.action.moveLinesDownAction"]
},
{
"before": ["K"],
"commands": ["editor.action.moveLinesUpAction"]
}
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment