1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
   | {     "breadcrumbs.enabled": true,      "editor.renderControlCharacters": false,      "editor.fontSize": 16,      "editor.tabSize": 4,       "editor.wordWrapColumn": 120,     "editor.detectIndentation": false,     "editor.insertSpaces": true,      "files.exclude": {          "**/node_modules": true,         "**/.idea": true,         "**/.vscode": true,         "**/.git": true,         "**/.svn": true,     },     "files.autoSave": "off",      "vetur.format.defaultFormatter.html": "js-beautify-html",      "vetur.format.defaultFormatter.js": "vscode-typescript",     "vetur.format.defaultFormatterOptions": {         "js-beautify-html": {             "wrap_line_length": 120,             "wrap_attributes": "auto",             "end_with_newline": false         },         "prettier": {             "singleQuote": true,             "printWidth": 120,             "semi": false         }     },     "vetur.format.options.tabSize": 4,     "vetur.validation.template": false,     "workbench.startupEditor": "newUntitledFile",     "workbench.iconTheme": "vscode-great-icons",      "workbench.tree.indent": 20,     "[jsonc]": {         "editor.defaultFormatter": "vscode.json-language-features"     },     "[javascript]": {         "editor.defaultFormatter": "vscode.typescript-language-features"     },     "[json]": {         "editor.defaultFormatter": "vscode.json-language-features"     },     "[vue]": {         "editor.defaultFormatter": "octref.vetur"     },     "[html]": {         "editor.defaultFormatter": "vscode.html-language-features"     },          "explorer.confirmDelete": false,     "javascript.updateImportsOnFileMove.enabled": "always",     "emmet.triggerExpansionOnTab": true,     "security.workspace.trust.untrustedFiles": "open",     "terminal.integrated.defaultProfile.osx": "zsh",     "diffEditor.ignoreTrimWhitespace": false, }
  |