Skip to content

Instantly share code, notes, and snippets.

@khushalbokadey
Created October 3, 2019 19:03
Show Gist options
  • Save khushalbokadey/36c628ec183ee8ec83e66e84f648c5b7 to your computer and use it in GitHub Desktop.
Save khushalbokadey/36c628ec183ee8ec83e66e84f648c5b7 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"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