Created
December 7, 2019 02:31
-
-
Save zarzen/dd0baeb90743b78c396b4d45c3a856a3 to your computer and use it in GitHub Desktop.
vscode vim plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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