Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "editor.fontSize": 14,
- "editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
- "editor.fontLigatures": true,
- "git.confirmSync": false,
- "workbench.colorCustomizations": {
- "editor.background": "#151517",
- "sideBar.background": "#151517",
- "editorCursor.foreground": "#ffffff",
- "quickInput.foreground": "#ffffff",
- "editorError.background": "#ff000064", // Ustaw kolor tła błędów
- "editorError.foreground": "#000000" // Opcjonalnie zmień kolor tekstu błędu
- },
- "javascript.updateImportsOnFileMove.enabled": "always",
- "[javascriptreact]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[javascript]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "editor.codeActionsOnSave": {
- "source.organizeImports": "explicit"
- },
- "[jsonc]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[json]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "[css]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "explorer.confirmDelete": false,
- "editor.stickyScroll.enabled": true,
- "[scss]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "editor.inlineSuggest.enabled": true,
- "[html]": {
- "editor.defaultFormatter": "vscode.html-language-features"
- },
- "turboConsoleLog.logType": "debug",
- "github.copilot.enable": {
- "*": true,
- "plaintext": false,
- "markdown": false,
- "scminput": false
- },
- "turboConsoleLog.addSemicolonInTheEnd": true,
- "turboConsoleLog.logFunction": "debug",
- "github.copilot.editor.enableAutoCompletions": true,
- "javascript.format.semicolons": "insert",
- "typescript.format.semicolons": "insert",
- "editor.formatOnSave": true,
- "editor.formatOnPaste": true,
- "editor.formatOnType": true,
- "notebook.formatOnSave.enabled": true,
- "[typescript]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "workbench.colorTheme": "Material Theme Darker High Contrast + Darcula",
- "vs-kubernetes": {
- "vs-kubernetes.minikube-show-information-expiration": "2025-04-12T07:48:05.993Z"
- },
- "[typescriptreact]": {
- "editor.defaultFormatter": "esbenp.prettier-vscode"
- },
- "editor.tokenColorCustomizations": {
- // comments to pink
- "textMateRules": [
- {
- "scope": "comment",
- "settings": {
- "foreground": "#FF69B4"
- }
- }
- ]
- },
- "typescript.updateImportsOnFileMove.enabled": "always",
- "customizeUI.stylesheet": {
- ".quick-input-widget": "width: 90% !important; margin-left: 0 !important; left: 50% !important; transform: translateX(-50%) !important;"
- },
- "explorer.confirmDragAndDrop": false,
- "workbench.sideBar.location": "right",
- "errorLens.messageEnabled": false,
- "chat.editing.alwaysSaveWithGeneratedChanges": true,
- "database-client.autoSync": true,
- "eslint.nodePath": "node_modules",
- "eslint.workingDirectories": ["./"],
- "eslint.validate": [
- "javascript",
- "javascriptreact",
- "typescript",
- "typescriptreact"
- ]
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement