VS Code Settings

VS Code Settings

I just want to keep it here in case I need to clean install VS Code

Copied to clipboard
{ "workbench.startupEditor": "none", "workbench.iconTheme": "material-icon-theme", "workbench.colorTheme": "One Dark Pro", "editor.suggestSelection": "first", "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", "editor.tabSize": 2, "editor.wordWrap": "on", "explorer.openEditors.visible": 0, "files.eol": "n", "explorer.confirmDragAndDrop": false, "javascript.updateImportsOnFileMove.enabled": "always", "explorer.confirmDelete": false, "advancedNewFile.exclude": { "node_modules": false, "node_modules_electron": false, "dev": true, "dist": true }, "advancedNewFile.showInformationMessages": true, "advancedNewFile.convenienceOptions": ["last", "current", "root"], "editor.defaultFormatter": "esbenp.prettier-vscode", "javascript.preferences.quoteStyle": "single", "typescript.preferences.quoteStyle": "single", "prettier.arrowParens": "always", "prettier.bracketSpacing": true, "prettier.singleQuote": true, "prettier.trailingComma": "all", "prettier.vueIndentScriptAndStyle": true, "editor.fontFamily": "'DroidSansMono NF', 'Fira Code', Consolas", "editor.fontLigatures": true, "terminal.external.windowsExec": "C:\Windows\System32\wsl.exe", "terminal.integrated.defaultProfile.windows": "Ubuntu (WSL)", "security.workspace.trust.untrustedFiles": "open", "editor.cursorStyle": "block", "redhat.telemetry.enabled": false, "typescript.updateImportsOnFileMove.enabled": "always", "editor.accessibilitySupport": "off" }