Advertisement
shopnilSS

MY VS CODE JSON FILE

Feb 10th, 2022
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.68 KB | None | 0 0
  1. {
  2.     "workbench.iconTheme": "material-icon-theme",
  3.     "liveServer.settings.donotShowInfoMsg": true,
  4.     "javascript.updateImportsOnFileMove.enabled": "always",
  5.     "editor.formatOnPaste": true,
  6.     "emmet.includeLanguages": {
  7.         "javascript": "javascriptreact"
  8.     },
  9.     "emmet.syntaxProfiles": {
  10.         "javascritp": "jsx",
  11.         "javascript": "html"
  12.     },
  13.     "workbench.colorTheme": "Community Material Theme Ocean High Contrast",
  14.     "explorer.confirmDelete": false,
  15.     "workbench.welcomePage.hiddenCategories": [
  16.         "Beginner"
  17.     ],
  18.     "terminal.integrated.defaultProfile.windows": "C:\\Program Files\\Git\\bin\\bash.exe (migrated)",
  19.     "diffEditor.ignoreTrimWhitespace": false,
  20.     "security.workspace.trust.untrustedFiles": "open",
  21.     "code-runner.runInTerminal": true,
  22.     // Controls the font family.
  23.     "code-runner.terminalRoot": "/",
  24.     "terminal.integrated.profiles.windows": {
  25.         "C:\\Program Files\\Git\\bin\\bash.exe (migrated)": {
  26.             "path": "C:\\Program Files\\Git\\bin\\bash.exe",
  27.             "args": []
  28.         }
  29.     },
  30.     "tabnine.experimentalAutoImports": true,
  31.     "editor.fontLigatures": true,
  32.     "editor.fontFamily": "\"cascadia code\",Consolas, 'Courier New', monospace",
  33.     "editor.fontSize": 15,
  34.     "editor.renderControlCharacters": true,
  35.     "editor.mouseWheelZoom": true,
  36.     "code-runner.clearPreviousOutput": true,
  37.     "code-runner.fileDirectoryAsCwd": true,
  38.     "editor.formatOnSave": true,
  39.     "bracket-pair-colorizer-2.depreciation-notice": false,
  40.     "files.exclude": {
  41.         "**/.classpath": true,
  42.         "**/.project": true,
  43.         "**/.settings": true,
  44.         "**/.factorypath": true
  45.     }
  46. }
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement