Skip to content

Instantly share code, notes, and snippets.

@huytd
Last active July 30, 2020 22:56
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 huytd/f55b093f24b3db98d441ba7694f96a19 to your computer and use it in GitHub Desktop.
Save huytd/f55b093f24b3db98d441ba7694f96a19 to your computer and use it in GitHub Desktop.
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"k"
],
"after": [
"<Esc>"
]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"<C-n>",
],
"commands": [
":nohl"
]
},
{
"before": ["L"],
"after": ["l"]
},
{
"before": ["H"],
"after": ["h"]
},
{
"before": ["l"],
"after": ["w"]
},
{
"before": ["h"],
"after": ["b"]
},
{
"before": ["<leader>", "l"],
"commands": [
"workbench.action.splitEditorRight"
]
},
{
"before": ["<leader>", "k"],
"commands": [
"workbench.action.splitEditorUp"
]
},
{
"before": ["<leader>", "j"],
"commands": [
"workbench.action.splitEditorDown"
]
},
{
"before": ["<leader>", "w", "h"],
"commands": [
"workbench.action.focusLeftGroup"
]
},
{
"before": ["<leader>", "w", "l"],
"commands": [
"workbench.action.focusRightGroup"
]
},
{
"before": ["<leader>", "w", "j"],
"commands": [
"workbench.action.focusBelowGroup"
]
},
{
"before": [
"<leader>", "w", "k"
],
"commands": [
"workbench.action.focusAboveGroup"
]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": [
"p",
],
"after": [
"p",
"g",
"v",
"y"
]
}
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"vim.debug.silent": true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment