RehabCZ

VSCode settings

Mar 15th, 2024 (edited)
763
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 4.38 KB | None | 0 0
  1. {
  2.   // FORMATTER ASSOCIATION
  3.   "[html]": {
  4.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  5.   },
  6.   "[css]": {
  7.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  8.   },
  9.   "[javascript]": {
  10.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  11.   },
  12.   "[json]": {
  13.     "editor.defaultFormatter": "vscode.json-language-features"
  14.   },
  15.   "[twig]": {
  16.     "editor.defaultFormatter": "mblode.twig-language-2"
  17.   },
  18.   "[blade]": {
  19.     "editor.defaultFormatter": "shufo.vscode-blade-formatter"
  20.   },
  21.   "[dart]": {
  22.     "editor.formatOnSave": true,
  23.     "editor.formatOnType": true,
  24.     "editor.rulers": [80],
  25.     "editor.selectionHighlight": false,
  26.     "editor.tabCompletion": "onlySnippets",
  27.     "editor.wordBasedSuggestions": "off"
  28.   },
  29.   "emmet.includeLanguages": {
  30.     "latte": "html"
  31.   },
  32.   // FILE ASSOCIATION
  33.   "files.associations": {
  34.     "*.neon": "neon",
  35.     "*.latte": "latte"
  36.   },
  37.   // ICONS ASSOCIATION
  38.   "material-icon-theme.activeIconPack": "angular_ngrx",
  39.   "material-icon-theme.files.associations": {
  40.     "*.latte": "mocha",
  41.     "*.neon": "yaml"
  42.   },
  43.   "material-icon-theme.folders.associations": {
  44.     "attribute": "decorators",
  45.     "attributes": "decorators",
  46.     "presenter": "controller",
  47.     "presenters": "controller",
  48.     "repository": "context",
  49.     "repositories": "context",
  50.     "entity": "container",
  51.     "entities": "container",
  52.     "trait": "include",
  53.     "traits": "include"
  54.   },
  55.   // EXPLORER
  56.   "explorer.confirmDragAndDrop": false,
  57.   // SECURITY
  58.   "security.workspace.trust.untrustedFiles": "newWindow",
  59.   "security.workspace.trust.banner": "never",
  60.   "security.workspace.trust.enabled": false,
  61.   // TYPESCRIPT
  62.   "typescript.updateImportsOnFileMove.enabled": "always",
  63.   "typescript.preferences.quoteStyle": "single",
  64.   // TERMINAL
  65.   "terminal.integrated.fontFamily": "monospace",
  66.   "terminal.integrated.defaultProfile.windows": "PowerShell",
  67.   "terminal.integrated.defaultProfile.osx": "zsh",
  68.   "terminal.integrated.defaultProfile.linux": "zsh",
  69.   "terminal.integrated.enablePersistentSessions": false,
  70.   // EDITOR
  71.   "editor.fontFamily": "Dank Mono",
  72.   "editor.fontVariations": true,
  73.   "editor.tabSize": 2,
  74.   "editor.suggestSelection": "first",
  75.   "editor.fontLigatures": false,
  76.   "editor.minimap.enabled": false,
  77.   "editor.formatOnSave": true,
  78.   // WORKBENCH
  79.   "workbench.editor.empty.hint": "hidden",
  80.   "workbench.iconTheme": "material-icon-theme",
  81.   "workbench.colorTheme": "Panda Syntax",
  82.   "workbench.preferredDarkColorTheme": "Default Dark Modern",
  83.   "workbench.preferredLightColorTheme": "Default Light Modern",
  84.   "workbench.tips.enabled": false,
  85.   "workbench.startupEditor": "none",
  86.   "window.titleBarStyle": "custom",
  87.   "workbench.statusBar.visible": false,
  88.   "workbench.editor.editorActionsLocation": "hidden",
  89.   "workbench.activityBar.location": "bottom",
  90.   "workbench.sideBar.location": "right",
  91.   "workbench.editor.showTabs": "multiple",
  92.   "window.commandCenter": false,
  93.   "workbench.layoutControl.enabled": false,
  94.   "settingsSync.ignoredSettings": [],
  95.   // CUSTOM CSS - JS TWEAKS
  96.   "vscode_custom_css.imports": [
  97.     "file://C:/Users/filip/AppData/Roaming/Code/User/custom.css"
  98.   ],
  99.   // GIT
  100.   "git.autofetch": true,
  101.   "git.enableSmartCommit": true,
  102.   "git.confirmSync": false,
  103.   // EXTENSIONS - DEBUG
  104.   "thunder-client.httpLibrary": "axios",
  105.   // EXTENSIONS - CSS
  106.   "tailwindCSS.emmetCompletions": true,
  107.   // EXTENSIONS - JS
  108.   "eslint.format.enable": true,
  109.   "npm-intellisense.showBuildInLibs": true,
  110.   // EXTENSIONS - SQL
  111.   "sqltools.useNodeRuntime": true,
  112.   "sqltools.disableNodeDetectNotifications": true,
  113.   // EXTENSIONS - PHP
  114.   "php.highlight-todo.enable": false,
  115.   "phpunit.phpunit": "./vendor/bin/phpunit",
  116.   "php.format.rules.openBraceOnNewLineForFunctions": true,
  117.   "phpTools.suppressPremiumFeatures": true,
  118.   "php.inlayHints.types.return": true,
  119.   "bladeFormatter.format.sortTailwindcssClasses": true,
  120.   // EXTENSIONS - OTHER
  121.   "path-intellisense.autoSlashAfterDirectory": true,
  122.   "mdb.sendTelemetry": false,
  123.   "liveshare.allowGuestTaskControl": true,
  124.   "redhat.telemetry.enabled": true,
  125.   // EXTENSIONS - PRETTIER
  126.   "prettier.bracketSameLine": true,
  127.   "prettier.jsxSingleQuote": true,
  128.   "prettier.singleQuote": true,
  129.   // EXTENSIONS - LATTE
  130.   "latte-lsp.trace.server": {
  131.     "format": "json",
  132.     "verbosity": "verbose"
  133.   },
  134.   // EXTENSIONS - VUE
  135.   "vue.updateImportsOnFileMove.enabled": true,
  136. }
Add Comment
Please, Sign In to add comment