Created
July 21, 2018 16:51
-
-
Save Experiment5X/32d7ccc48280d57b71be96e383be5244 to your computer and use it in GitHub Desktop.
vscode vim settings
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.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": ["<C-j>"], | |
"after": ["j", "j", "j", "j"] | |
}, | |
{ | |
"before": ["<C-k>"], | |
"after": ["k", "k", "k", "k"] | |
}, | |
{ | |
"before": ["<C-h>"], | |
"after": ["h", "h", "h", "h"] | |
}, | |
{ | |
"before": ["<C-l>"], | |
"after": ["l", "l", "l", "l"] | |
} | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment