Last active
May 1, 2019 04:42
-
-
Save nicoaudy/79fb225c3e50d0dc56f9bc5bcd027d80 to your computer and use it in GitHub Desktop.
vscode user setting
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
| { | |
| "workbench.colorTheme": "Slime", | |
| "workbench.activityBar.visible": false, | |
| "explorer.openEditors.visible": 0, | |
| "workbench.statusBar.visible": false, | |
| "editor.fontFamily": "Operator Mono", | |
| "editor.fontSize": 13, | |
| "editor.fontLigatures": true, | |
| "editor.formatOnSave": true, | |
| "editor.minimap.enabled": false, | |
| "vim.easymotion": true, | |
| "vim.sneak": true, | |
| "vim.incsearch": true, | |
| "vim.useSystemClipboard": true, | |
| "vim.useCtrlKeys": true, | |
| "vim.hlsearch": true, | |
| "vim.insertModeKeyBindings": [ | |
| { | |
| "before": [ | |
| "j", | |
| "j" | |
| ], | |
| "after": [ | |
| "<Esc>" | |
| ] | |
| } | |
| ], | |
| "vim.normalModeKeyBindingsNonRecursive": [ | |
| { | |
| "before": [ | |
| "<leader>", | |
| "d" | |
| ], | |
| "after": [ | |
| "d", | |
| "d" | |
| ] | |
| }, | |
| { | |
| "before": [ | |
| "<C-n>" | |
| ], | |
| "commands": [ | |
| ":nohl" | |
| ] | |
| } | |
| ], | |
| "vim.leader": ",", | |
| "vim.handleKeys": { | |
| "<C-a>": false, | |
| "<C-f>": false | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment