Skip to content

Instantly share code, notes, and snippets.

@khuyentran1401
Created April 26, 2023 19:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khuyentran1401/1f5de5a54779e135d9201dee62c77c34 to your computer and use it in GitHub Desktop.
Save khuyentran1401/1f5de5a54779e135d9201dee62c77c34 to your computer and use it in GitHub Desktop.
vim keyboard map settings for vscode
{
"vim.normalModeKeyBindings": [
{
"before": ["J"],
"after": ["5", "j"]
},
{
"before": ["K"],
"after": ["5", "k"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<Leader>", "j"],
"after": ["J"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment