Last active
October 17, 2017 02:30
-
-
Save polodev/7a659f4db0cd25096c68cb4a59b7c7d2 to your computer and use it in GitHub Desktop.
vscode 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
{ | |
"vim.easymotion": true, | |
"vim.incsearch": true, | |
"vim.useCtrlKeys": false, | |
"vim.leader": ",", | |
"vim.hlsearch": true, | |
"editor.fontFamily": "'Fira Code', 'Fira Mono', Monaco, Menlo, monospace", | |
"editor.lineHeight": 20, | |
"editor.fontSize": 18, | |
"editor.formatOnPaste": true, | |
"editor.minimap.enabled": false, | |
"editor.tabSize": 2, | |
"editor.wordWrap": "off", | |
"editor.fontLigatures": true, | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": ["j","j"], | |
"after": ["<Esc>"] | |
} | |
], | |
"vim.otherModesKeyBindingsNonRecursive": [ | |
{ | |
"before": ["leader", "l"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "workbench.action.focusNextGroup", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before": ["leader", "h"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "workbench.action.focusPreviousGroup", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before": ["leader", "z"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "redo", | |
"args": [] | |
} | |
] | |
} | |
], | |
"vim.disableAnnoyingNeovimMessage": true, | |
"window.zoomLevel": 0, | |
"workbench.sideBar.location": "left" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment