Advertisement
RehabCZ

VSCode settings

Mar 15th, 2024 (edited)
657
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.16 KB | None | 0 0
  1. {
  2.   // FORMATTER ASSOCIATION
  3.   "[html]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
  4.   "[css]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
  5.   "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
  6.   "[json]": { "editor.defaultFormatter": "vscode.json-language-features" },
  7.   "[twig]": { "editor.defaultFormatter": "mblode.twig-language-2" },
  8.   "[blade]": { "editor.defaultFormatter": "shufo.vscode-blade-formatter" },
  9.   "emmet.includeLanguages": { "latte": "html" },
  10.   // FILE ASSOCIATION
  11.   "files.associations": {
  12.     "*.neon": "neon",
  13.     "*.latte": "latte"
  14.   },
  15.   // ICONS ASSOCIATION
  16.   "material-icon-theme.files.associations": {
  17.     "*.latte": "mocha",
  18.     "*.neon": "yaml"
  19.   },
  20.   "material-icon-theme.folders.associations": {
  21.     "attribute": "decorators",
  22.     "attributes": "decorators",
  23.     "presenter": "controller",
  24.     "presenters": "controller",
  25.     "trait": "include",
  26.     "traits": "include"
  27.   },
  28.   // EXPLORER
  29.   "explorer.confirmDragAndDrop": false,
  30.   // SECURITY
  31.   "security.workspace.trust.untrustedFiles": "newWindow",
  32.   "security.workspace.trust.banner": "never",
  33.   "security.workspace.trust.enabled": false,
  34.   // TYPESCRIPT
  35.   "typescript.updateImportsOnFileMove.enabled": "always",
  36.   "typescript.preferences.quoteStyle": "single",
  37.   // TERMINAL
  38.   "terminal.integrated.fontFamily": "monospace",
  39.   "terminal.integrated.defaultProfile.windows": "psh",
  40.   "terminal.integrated.defaultProfile.osx": "zsh",
  41.   "terminal.integrated.defaultProfile.linux": "zsh",
  42.   // EDITOR
  43.   "editor.fontFamily": "monospace, Consolas, 'Courier New'",
  44.   "editor.tabSize": 2,
  45.   "editor.suggestSelection": "first",
  46.   "editor.fontLigatures": false,
  47.   "editor.minimap.enabled": false,
  48.   "editor.formatOnSave": true,
  49.   // WORKBENCH
  50.   "workbench.editor.empty.hint": "hidden",
  51.   "workbench.iconTheme": "material-icon-theme",
  52.   "workbench.preferredDarkColorTheme": "Default Dark Modern",
  53.   "workbench.preferredLightColorTheme": "Default Light Modern",
  54.   "workbench.tips.enabled": false,
  55.   "workbench.startupEditor": "none",
  56.   // WINDOW
  57.   "window.commandCenter": false,
  58.   "window.zoomLevel": 1.75,
  59.   "window.titleBarStyle": "custom",
  60.   "settingsSync.ignoredSettings": [],
  61.   "vue.updateImportsOnFileMove.enabled": true,
  62.   "thunder-client.httpLibrary": "axios",
  63.   "tailwindCSS.emmetCompletions": true,
  64.   "sqltools.useNodeRuntime": true,
  65.   "sqltools.disableNodeDetectNotifications": true,
  66.   "php.highlight-todo.enable": false,
  67.   "phpunit.phpunit": "./vendor/bin/phpunit",
  68.   "php.format.rules.openBraceOnNewLineForFunctions": true,
  69.   "phpTools.suppressPremiumFeatures": true,
  70.   "php.inlayHints.types.return": true,
  71.   "path-intellisense.autoSlashAfterDirectory": true,
  72.   "npm-intellisense.showBuildInLibs": true,
  73.   "mdb.sendTelemetry": false,
  74.   "material-icon-theme.activeIconPack": "angular_ngrx",
  75.   "liveshare.allowGuestTaskControl": true,
  76.   "bladeFormatter.format.sortTailwindcssClasses": true,
  77.   "eslint.format.enable": true,
  78.   "discord.removeTimestamp": true,
  79.   "git.enableSmartCommit": true,
  80.   // PRETTIER EXTENSION
  81.   "prettier.bracketSameLine": true,
  82.   "prettier.jsxSingleQuote": true,
  83.   "prettier.singleQuote": true
  84. }
  85.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement