Last active
December 24, 2018 13:23
-
-
Save jbalzar/73c80b3c6ef268a3d8d61e4db8b6f67b to your computer and use it in GitHub Desktop.
VS Code with Vim
This file contains 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": "One Monokai", | |
"window.zoomLevel": 0, | |
"vim.easymotion": true, | |
"vim.incsearch": true, | |
"vim.useSystemClipboard": true, | |
"vim.useCtrlKeys": false, | |
"vim.hlsearch": true, | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": ["j","j"], | |
"after": ["<Esc>"] | |
} | |
], | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": ["<leader>","d"], | |
"after": ["d", "d"] | |
}, | |
{ | |
"before":["<C-n>"], | |
"after":[], | |
"commands": [ | |
{ | |
"command": ":nohl" | |
} | |
] | |
}, | |
{ | |
"before": ["<leader>", "w"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "workbench.action.files.save", | |
"args": [] | |
} | |
] | |
} | |
], | |
"vim.leader": ",", | |
"vim.handleKeys":{ | |
"<C-a>": false, | |
"<C-f>": false | |
}, | |
"terminal.integrated.fontFamily": "Meslo LG M for Powerline", | |
"editor.renderWhitespace": "all", | |
"terminal.integrated.shell.linux": "zsh", | |
"workbench.startupEditor": "newUntitledFile", | |
"explorer.openEditors.visible": 0, | |
"workbench.activityBar.visible": false, | |
"editor.tabCompletion": "on", | |
"workbench.editor.enablePreview": false, | |
"[scss]": { | |
"editor.tabSize": 2 | |
}, | |
"[html]": { | |
"editor.tabSize": 4 | |
}, | |
"[javascript]": { | |
"editor.tabSize": 2 | |
}, | |
"files.autoSave": "afterDelay", | |
"editor.minimap.enabled": false, | |
"vim.disableExtension": false, | |
"editor.fontSize": 14, | |
"editor.detectIndentation": false, | |
"extensions.ignoreRecommendations": false, | |
"workbench.iconTheme": "material-icon-theme" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment