Skip to content

Instantly share code, notes, and snippets.

@dseeni
Forked from kickbase/keybindings.json
Created May 4, 2019 15:24
Show Gist options
  • Select an option

  • Save dseeni/14689a591c1c4a7842713fa4cd2d484c to your computer and use it in GitHub Desktop.

Select an option

Save dseeni/14689a591c1c4a7842713fa4cd2d484c to your computer and use it in GitHub Desktop.
[VSCode] [Houdini] Keyboard settings with Vim plugin
{
"editor.fontFamily": "Ricty Diminished",
"editor.fontSize": 15,
"editor.formatOnType": true,
"editor.formatOnSave": true,
"editor.wordWrap": "on",
"editor.scrollBeyondLastLine": false,
"workbench.startupEditor": "newUntitledFile",
"python.linting.enabledWithoutWorkspace": false,
"typescript.check.npmIsInstalled": false,
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": [
"Z",
"Z"
],
"after": [],
"commands": [
{
"command": "workbench.action.files.save",
"args": []
},
{
"command": "workbench.action.closeActiveEditor",
"args": []
}
]
},
{
"before": [
"<C-c>"
],
"after": [
"<C-c>"
],
"commands": [
{
"command": ":nohl",
"args": []
}
]
},
{
"before": [
"Y"
],
"after": [
"y",
"$"
]
},
{
"before": [
"+"
],
"after": [
"<C-a>"
]
},
{
"before": [
"-"
],
"after": [
"<C-x>"
]
},
{
"before": [
";"
],
"after": [
":"
]
},
{
"before": [
":"
],
"after": [
";"
]
}
],
"vim.insertModeKeyBindings": [
{
"before": [
"<C-m>"
],
"after": [
"<Enter>"
]
}
],
"vim.hlsearch": false,
"vim.leader": "<space>",
"vim.easymotion": true,
"vim.easymotionKeys": "sdfghjkl",
"vim.disableAnnoyingNeovimMessage": true,
"vim.useSystemClipboard": true,
"vim.searchHighlightColor": "rgba(255, 235, 60, 0.4)"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment