Advertisement
wwilkowski

Untitled

Dec 19th, 2024
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.05 KB | None | 0 0
  1. {
  2.   "editor.fontSize": 14,
  3.   "editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
  4.   "editor.fontLigatures": true,
  5.   "git.confirmSync": false,
  6.   "workbench.colorCustomizations": {
  7.     "editor.background": "#151517",
  8.     "sideBar.background": "#151517",
  9.     "editorCursor.foreground": "#ffffff",
  10.     "quickInput.foreground": "#ffffff",
  11.     "editorError.background": "#ff000064", // Ustaw kolor tła błędów
  12.     "editorError.foreground": "#000000" // Opcjonalnie zmień kolor tekstu błędu
  13.   },
  14.   "javascript.updateImportsOnFileMove.enabled": "always",
  15.   "[javascriptreact]": {
  16.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  17.   },
  18.   "[javascript]": {
  19.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  20.   },
  21.   "editor.codeActionsOnSave": {
  22.     "source.organizeImports": "explicit"
  23.   },
  24.   "[jsonc]": {
  25.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  26.   },
  27.   "[json]": {
  28.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  29.   },
  30.   "[css]": {
  31.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  32.   },
  33.   "explorer.confirmDelete": false,
  34.   "editor.stickyScroll.enabled": true,
  35.   "[scss]": {
  36.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  37.   },
  38.   "editor.inlineSuggest.enabled": true,
  39.   "[html]": {
  40.     "editor.defaultFormatter": "vscode.html-language-features"
  41.   },
  42.   "turboConsoleLog.logType": "debug",
  43.   "github.copilot.enable": {
  44.     "*": true,
  45.     "plaintext": false,
  46.     "markdown": false,
  47.     "scminput": false
  48.   },
  49.   "turboConsoleLog.addSemicolonInTheEnd": true,
  50.   "turboConsoleLog.logFunction": "debug",
  51.   "github.copilot.editor.enableAutoCompletions": true,
  52.   "javascript.format.semicolons": "insert",
  53.   "typescript.format.semicolons": "insert",
  54.   "editor.formatOnSave": true,
  55.   "editor.formatOnPaste": true,
  56.   "editor.formatOnType": true,
  57.   "notebook.formatOnSave.enabled": true,
  58.   "[typescript]": {
  59.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  60.   },
  61.   "workbench.colorTheme": "Material Theme Darker High Contrast + Darcula",
  62.   "vs-kubernetes": {
  63.     "vs-kubernetes.minikube-show-information-expiration": "2025-04-12T07:48:05.993Z"
  64.   },
  65.   "[typescriptreact]": {
  66.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  67.   },
  68.   "editor.tokenColorCustomizations": {
  69.     // comments to pink
  70.     "textMateRules": [
  71.       {
  72.         "scope": "comment",
  73.         "settings": {
  74.           "foreground": "#FF69B4"
  75.         }
  76.       }
  77.     ]
  78.   },
  79.   "typescript.updateImportsOnFileMove.enabled": "always",
  80.   "customizeUI.stylesheet": {
  81.     ".quick-input-widget": "width: 90% !important; margin-left: 0 !important; left: 50% !important; transform: translateX(-50%) !important;"
  82.   },
  83.   "explorer.confirmDragAndDrop": false,
  84.   "workbench.sideBar.location": "right",
  85.   "errorLens.messageEnabled": false,
  86.   "chat.editing.alwaysSaveWithGeneratedChanges": true,
  87.   "database-client.autoSync": true,
  88.   "eslint.nodePath": "node_modules",
  89.   "eslint.workingDirectories": ["./"],
  90.   "eslint.validate": [
  91.     "javascript",
  92.     "javascriptreact",
  93.     "typescript",
  94.     "typescriptreact"
  95.   ]
  96. }
  97.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement