Last active
November 10, 2019 13:14
-
-
Save aputs/31dbd25f8ea5a52a126297add271e391 to your computer and use it in GitHub Desktop.
windows vscode user settings
This file contains 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
{ | |
"workbench.colorTheme": "Material Theme Darker High Contrast", | |
"vim.easymotion": true, | |
"vim.sneak": true, | |
"vim.incsearch": true, | |
"vim.useSystemClipboard": true, | |
"vim.useCtrlKeys": true, | |
"vim.hlsearch": true, | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": [ | |
"j", | |
"j" | |
], | |
"after": [ | |
"<Esc>" | |
] | |
} | |
], | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": [ | |
"<leader>", | |
"d" | |
], | |
"after": [ | |
"d", | |
"d" | |
] | |
}, | |
{ | |
"before": [ | |
"<C-n>" | |
], | |
"commands": [ | |
":nohl" | |
] | |
} | |
], | |
"vim.leader": "<space>", | |
"vim.handleKeys": { | |
"<C-a>": false, | |
"<C-c>": false, | |
"<C-v>": false, | |
"<C-x>": false, | |
"<C-w>": false, | |
"<C-j>": false, | |
"<C-f>": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment