Last active
June 25, 2018 09:57
-
-
Save linhmtran168/1348f505aeede947a964e7b8049e6428 to your computer and use it in GitHub Desktop.
vs code Windows 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
| { | |
| "workbench.iconTheme": "eq-material-theme-icons", | |
| "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe", | |
| "terminal.integrated.shellArgs.windows": ["/K", "C:\\tools\\cmder\\vscode.bat"], | |
| "vim.easymotion": true, | |
| "vim.incsearch": true, | |
| "vim.useCtrlKeys": true, | |
| "vim.hlsearch": true, | |
| "vim.sneak": true, | |
| "vim.leader": "<space>", | |
| "vim.visualstar": true, | |
| "gitProjectManager.baseProjectsFolders": [ | |
| "C:\\Users\\linhm\\Dev\\go", | |
| "C:\\Users\\linhm\\Dev\\blockchain" | |
| ], | |
| "editor.multiCursorModifier": "alt", | |
| "files.hotExit": "onExitAndWindowClose", | |
| "gitlens.keymap": "chorded", | |
| "files.autoSave": "onFocusChange", | |
| "workbench.colorTheme": "One Dark Pro", | |
| "eslint.packageManager": "yarn", | |
| "gitlens.advanced.messages": { | |
| "suppressCommitHasNoPreviousCommitWarning": false, | |
| "suppressCommitNotFoundWarning": false, | |
| "suppressFileNotUnderSourceControlWarning": false, | |
| "suppressGitVersionWarning": false, | |
| "suppressLineUncommittedWarning": false, | |
| "suppressNoRepositoryWarning": false, | |
| "suppressResultsExplorerNotice": false, | |
| "suppressShowKeyBindingsNotice": true | |
| }, | |
| "autoDocstring.docstringFormat": "sphinx", | |
| "window.zoomLevel": 0, | |
| "gitlens.historyExplorer.enabled": true, | |
| "materialTheme.fixIconsRunning": false, | |
| "materialTheme.autoApplyIcons": true | |
| // Toggle between terminal and editor | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment