Vscode Config Json

VS CODE CONFIG JSON FILE

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"workbench.editor.showTabs": true,
"editor.renderWhitespace": "all",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"java.semanticHighlighting.enabled": true,
"files.exclude": {
"**/__pycache__": true,
"**/.classpath": true,
"**/.factorypath": true,
"**/.project": true,
"**/.settings": true,
"**/.vscode": true,
"**/dist": true,
"**/dist.zip": true,
"**/node_modules": true
},
"typescript.updateImportsOnFileMove.enabled": "always",
"python.jediEnabled": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"window.zoomLevel": 0,
"editor.largeFileOptimizations": false,
"workbench.colorTheme": "Default Light+"
}