Advertisement
shopnilSS

VS-Code Config

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