Skip to content

Instantly share code, notes, and snippets.

@mayok
Last active July 18, 2018 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mayok/1e16af6d9d337c66359888fc06579cee to your computer and use it in GitHub Desktop.
Save mayok/1e16af6d9d337c66359888fc06579cee to your computer and use it in GitHub Desktop.
[{
"key": "ctrl+e",
"command": "cursorEnd",
"when": "editorTextFocus"
}, ]
"editor.formatOnSave": true,
"diffEditor.ignoreTrimWhitespace": true,
// vim settings
"vim.easymotion": true,
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"k"
],
"after": [
"<Esc>"
]
}
],
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": [
"leader",
"w"
],
"after": [],
"commands": [
{
"command": "workbench.action.files.save",
"args": []
}
]
}
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-c>": false,
"<C-d>": false,
"<C-f>": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment