-
-
Save dseeni/14689a591c1c4a7842713fa4cd2d484c to your computer and use it in GitHub Desktop.
[VSCode] [Houdini] Keyboard settings with Vim plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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