Created
October 10, 2019 17:54
-
-
Save Harshakvarma/68e24b384f32119aa1a85d840c88f3ab to your computer and use it in GitHub Desktop.
Vscode mac
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": "FiraCode-Retina", | |
| "editor.fontLigatures": true, | |
| "terminal.integrated.shell.osx": "/bin/zsh", | |
| "workbench.activityBar.visible": true, | |
| "window.zoomLevel": 0, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "vscode.typescript-language-features" | |
| }, | |
| "workbench.editor.showTabs": true, | |
| "vim.easymotion": true, | |
| "vim.sneak": true, | |
| "vim.incsearch": true, | |
| "vim.useSystemClipboard": true, | |
| "vim.useCtrlKeys": true, | |
| "vim.hlsearch": false, | |
| "vim.insertModeKeyBindings": [ | |
| { | |
| "before": [ | |
| "j", | |
| "j" | |
| ], | |
| "after": [ | |
| "<Esc>" | |
| ] | |
| } | |
| ], | |
| "vim.normalModeKeyBindingsNonRecursive": [ | |
| { | |
| "before": [ | |
| "<leader>", | |
| "d" | |
| ], | |
| "after": [ | |
| "d", | |
| "d" | |
| ] | |
| }, | |
| { | |
| "before": [ | |
| "<C-n>" | |
| ], | |
| "commands": [ | |
| ":nohl" | |
| ] | |
| } | |
| ], | |
| "vim.leader": "<space>", | |
| "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