Skip to content

Instantly share code, notes, and snippets.

@zbecknell
Last active July 15, 2019 17:32
Show Gist options
  • Save zbecknell/af817013c71578fffd1e90cce2fa0256 to your computer and use it in GitHub Desktop.
Save zbecknell/af817013c71578fffd1e90cce2fa0256 to your computer and use it in GitHub Desktop.
VsCode Vim Settings
"vim.easymotion": true,
"vim.leader": ",",
"vim.normalModeKeyBindings": [{
"before": ["u"],
"after": [],
"commands": [{
"command": "undo",
"args": []
}]
},
{
"before": ["U"],
"after": [],
"commands": [{
"command": "redo",
"args": []
}]
},
{
"before": ["R"],
"after": [],
"commands": [{
"command": "editor.action.rename",
"args": []
}]
},
{
"before": ["D"],
"after": [],
"commands": [{
"command": "editor.action.copyLinesDownAction",
"args": []
}]
}
],
"vim.useSystemClipboard": true,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment