Skip to content

Instantly share code, notes, and snippets.

@Zeko369
Last active January 10, 2021 23:13
Show Gist options
  • Save Zeko369/8d5195d1d0bba6f0e94bb3dbc91c1e24 to your computer and use it in GitHub Desktop.
Save Zeko369/8d5195d1d0bba6f0e94bb3dbc91c1e24 to your computer and use it in GitHub Desktop.
{
"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