Last active
August 19, 2018 13:13
-
-
Save MQuy/bc3dbb0baa33637ef48d4eaf14e758bd to your computer and use it in GitHub Desktop.
VSCode Vim
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.tabSize": 2, | |
"editor.detectIndentation": true, | |
"editor.trimAutoWhitespace": true, | |
"files.trimTrailingWhitespace": true, | |
"terminal.integrated.copyOnSelection": true, | |
"explorer.confirmDelete": false, | |
"window.zoomLevel": 0, | |
"workbench.sideBar.location": "left", | |
"editor.minimap.enabled": false, | |
"explorer.confirmDragAndDrop": false, | |
"files.autoSave": "onWindowChange", | |
"editor.smoothScrolling": true, | |
"workbench.startupEditor": "none", | |
"workbench.colorTheme": "Atom One Dark", | |
"workbench.colorCustomizations": { | |
"sideBar.background": "#282C34" | |
}, | |
"explorer.openEditors.visible": 0, | |
"vim.easymotion": true, | |
"vim.useSystemClipboard": true, | |
"vim.leader": "<space>", | |
"vim.otherModesKeyBindingsNonRecursive": [ | |
{ | |
"before": ["g", "o"], | |
"after": ["g", "d"] | |
}, | |
{ | |
"before": ["g", "p"], | |
"after": ["<C-o>"] | |
}, | |
{ | |
"before": ["g", "n"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "workbench.action.nextEditor", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before": ["g", "b"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "workbench.action.previousEditor", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before": ["g", "c"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "workbench.action.closeActiveEditor", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before": ["g", "s"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "workbench.action.files.save", | |
"args": [] | |
}, | |
{ | |
"command": "workbench.action.closeActiveEditor", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before": ["leader", "w"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "workbench.action.files.save", | |
"args": [] | |
} | |
] | |
} | |
], | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"files.defaultLanguage": "markdown", | |
"editor.formatOnSave": true, | |
"terminal.external.osxExec": "iTerm.app", | |
"terminal.integrated.shell.osx": "/bin/zsh" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment