Skip to content

Instantly share code, notes, and snippets.

@yrvsyh
Created December 31, 2020 03:30
Show Gist options
  • Save yrvsyh/675545815e46c8304efa161a2d478179 to your computer and use it in GitHub Desktop.
Save yrvsyh/675545815e46c8304efa161a2d478179 to your computer and use it in GitHub Desktop.
vscode vim config
"vim.easymotion": true,
// "vim.sneak": true,
"vim.camelCaseMotion.enable": true,
"vim.useSystemClipboard": true,
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false
},
"vim.insertModeKeyBindingsNonRecursive": [
{
"before": [
"<C-f>"
],
"after": [
"<ESC>"
]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"<C-f>"
],
"after": [
"<ESC>"
]
},
{
"before": [
"<leader>",
"d"
],
"after": [
"d",
"d"
]
},
{
"before": [
"<leader>",
"q"
],
"commands": [
"workbench.action.closeActiveEditor"
]
},
{
"before": [
"<C-n>"
],
"commands": [
":nohl"
]
},
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": [
"<C-f>"
],
"after": [
"<ESC>"
]
}
],
"vim.normalModeKeyBindings": [
{
"before": [
"s"
],
"after": [
"<leader>",
"<leader>",
"2",
"s"
]
}
],
"vim.visualModeKeyBindings": [
{
"before": [
">"
],
"commands": [
"editor.action.indentLines"
]
},
{
"before": [
"<"
],
"commands": [
"editor.action.outdentLines"
]
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment