Last active
January 10, 2021 23:13
-
-
Save Zeko369/8d5195d1d0bba6f0e94bb3dbc91c1e24 to your computer and use it in GitHub Desktop.
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.insertModeKeyBindings": [ | |
{ | |
"before": ["j", "k"], | |
"after": ["<Esc>"] | |
} | |
], | |
"vim.normalModeKeyBindings": [ | |
{ | |
"before": ["B"], | |
"after": ["^"] | |
}, | |
{ | |
"before": ["E"], | |
"after": ["$"] | |
} | |
], | |
"vim.visualModeKeyBindings": [ | |
{ | |
"before": ["B"], | |
"after": ["^"] | |
}, | |
{ | |
"before": ["E"], | |
"after": ["$"] | |
} | |
], | |
"vim.handleKeys": { | |
"<C-a>": false, | |
"<C-c>": false, | |
"<C-v>": false, | |
"<C-w>": false, | |
"<C-f>": false, | |
"<C-k>": false, | |
"<C-t>": false, | |
"<C-b>": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment