Skip to content

Instantly share code, notes, and snippets.

@zarzen
Created December 7, 2019 02:31
Show Gist options
  • Save zarzen/dd0baeb90743b78c396b4d45c3a856a3 to your computer and use it in GitHub Desktop.
Save zarzen/dd0baeb90743b78c396b4d45c3a856a3 to your computer and use it in GitHub Desktop.
vscode vim plugin
"vim.easymotion": true,
"vim.sneak": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [{
"before": ["f", "d"],
"after": ["<Esc>"]
}],
"vim.normalModeKeyBindingsNonRecursive": [{
"before": ["<leader>", "d"],
"after": ["d", "d"]
},
{
"before": ["<C-n>"],
"commands": [":nohl"]
}
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false,
"<C-e>": false
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment