Created
October 3, 2019 19:03
-
-
Save khushalbokadey/36c628ec183ee8ec83e66e84f648c5b7 to your computer and use it in GitHub Desktop.
VS Code Settings
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.minimap.enabled": false, | |
"editor.formatOnType": true, | |
"window.zoomLevel": 0, | |
"editor.fontSize": 16, | |
"explorer.openEditors.visible": 0, | |
"editor.wordWrap": "on", | |
"workbench.colorTheme": "Plastic", | |
"search.useIgnoreFiles": false, | |
"workbench.editor.enablePreview": false, | |
"files.exclude": { | |
"node_modules/*": true, | |
"**/node_modules": true, | |
"**/.tmp": true, | |
"**/*.pyc": true, | |
"**/*.map": true, | |
"**/*__pycache__": true, | |
"**/.logs": true, | |
}, | |
"workbench.statusBar.feedback.visible": false, | |
"editor.parameterHints": false, | |
"javascript.validate.enable": false, | |
"editor.insertSpaces": true, | |
"editor.tabSize": 2, | |
"editor.detectIndentation": true, | |
"workbench.editor.showTabs": true, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"[javascript]": { | |
"editor.defaultFormatter": "HookyQR.beautify" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "HookyQR.beautify" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "HookyQR.beautify" | |
}, | |
"gitlens.currentLine.format": "${agoOrDate} • ${message}", | |
"gitlens.currentLine.enabled": false, | |
"gitlens.hovers.currentLine.over": "line" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment