Created
April 18, 2018 04:03
-
-
Save ysheng26/da3840ac03013a066b23b32560630b6b to your computer and use it in GitHub Desktop.
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.fontSize": 14, | |
"editor.renderLineHighlight": "none", | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"editor.rulers": [ | |
80 | |
], | |
"editor.renderWhitespace": "all", | |
"vim.disableExtension": true, | |
"vim.useSystemClipboard": true, | |
"vim.easymotion": true, | |
"vim.surround": true, | |
"vim.incsearch": true, | |
"vim.hlsearch": true, | |
"vim.insertModeKeyBindingsNonRecursive": [ | |
{ | |
"before": ["j", "k"], | |
"after": ["<Esc>"] | |
} | |
], | |
"vim.otherModesKeyBindingsNonRecursive": [ | |
{ | |
"before": ["Z", "Z"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "workbench.action.files.save", | |
"args": [] | |
}, | |
{ | |
"command": "workbench.action.closeActiveEditor", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before":["<Space>"], | |
"after":[], | |
"commands": [ | |
{ | |
"command": ":nohl", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before": ["leader", "w"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "workbench.action.files.save", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before": ["leader", "q"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "workbench.action.closeActiveEditor", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before": ["j"], | |
"after": ["g", "j"] | |
}, | |
{ | |
"before": ["k"], | |
"after": ["g", "k"] | |
} | |
], | |
"vim.leader": ",", | |
"editor.codeLens": false, | |
"window.zoomLevel": 1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment