35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"workbench.iconTheme": "vscode-icons",
|
|
"workbench.startupEditor": "newUntitledFile",
|
|
"editor.minimap.enabled": false,
|
|
"git.enableSmartCommit": true,
|
|
"workbench.editor.enablePreview": false,
|
|
"workbench.tree.indent": 16,
|
|
"powermode.enabled": true,
|
|
"powermode.presets": "magic",
|
|
"vsicons.dontShowNewVersionMessage": true,
|
|
"javascript.preferences.quoteStyle": "double",
|
|
"typescript.preferences.quoteStyle": "double",
|
|
"typescript.updateImportsOnFileMove.enabled": "always",
|
|
"window.zoomLevel": 0,
|
|
"terminal.explorerKind": "external",
|
|
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
|
|
"npm.enableScriptExplorer": true,
|
|
"editor.snippetSuggestions": "top",
|
|
"search.quickOpen.includeHistory": false,
|
|
"files.exclude": {
|
|
"**/build/": true,
|
|
"**/node_modules/": true,
|
|
"**/.git/": true
|
|
},
|
|
"search.exclude": {
|
|
"**/build/": true,
|
|
"**/node_modules/": true,
|
|
"**/.git/": true
|
|
},
|
|
"files.watcherExclude": {
|
|
"**/build/": true,
|
|
"**/node_modules/": true,
|
|
"**/.git/": true
|
|
}
|
|
} |