hfelix

VSCODE Settings

May 16th, 2023
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 15.81 KB | Source Code | 0 0
  1. {
  2.     "workbench.editor.historyBasedLanguageDetection ": true,
  3.     "workbench.colorTheme": "Shades of Purple (Super Dark)",
  4.     "workbench.activityBar.iconClickBehavior": "focus",
  5.     "workbench.iconTheme": "material-icon-theme",
  6.     "workbench.iconSize": 20,
  7.     "terminal.integrated.fontFamily": "Fira Code",
  8.     "debug.console.fontSize": 17,
  9.     "terminal.integrated.fontSize": 14,
  10.     "editor.fontSize": 12,
  11.     "editor.semanticHighlighting.enabled": true,
  12.     "editor.fontFamily": "Fira Code, Operator Mono, Menlo, Monaco, 'Courier New', monospace",
  13.     "editor.lineHeight": 24.65,
  14.     "editor.letterSpacing": 0.5,
  15.     "editor.tabSize": 4,
  16.     "editor.insertSpaces": true,
  17.     "editor.detectIndentation": false,
  18.     "editor.fontLigatures": true,
  19.     "editor.suggestFontSize": 16,
  20.     "editor.suggestLineHeight": 35,
  21.     "editor.cursorBlinking": "smooth",
  22.     "editor.cursorStyle": "line-thin",
  23.     "editor.cursorWidth": 4,
  24.     "editor.fontWeight": "500",
  25.     "editor.renderWhitespace": "all",
  26.     "editor.snippetSuggestions": "top",
  27.     "editor.bracketPairColorization.enabled": true,
  28.     "editor.unicodeHighlight.ambiguousCharacters": false,
  29.     "editor.inlineSuggest.enabled": true,
  30.     "editor.glyphMargin": true,
  31.     "editor.guides.bracketPairs": true,
  32.     "editor.scrollbar.vertical": "hidden",
  33.     "editor.scrollbar.verticalScrollbarSize": 1,
  34.     "editor.suggestSelection": "recentlyUsedByPrefix",
  35.     "editor.semanticTokenColorCustomizations": {},
  36.     "editor.guides.bracketPairsHorizontal": true,
  37.     "editor.unicodeHighlight.invisibleCharacters": false,
  38.     "editor.accessibilitySupport": "off",
  39.     "editor.wordWrap": "on",
  40.     "editor.wordWrapColumn": 160,
  41.     "editor.minimap.scale": 2,
  42.     "editor.minimap.renderCharacters": true,
  43.     "editor.rulers": [
  44.         { "column": 0, "color": "#5a5a5a44" }, // left boundary is 50% opaque
  45.         { "column": 2, "color": "#5a5a5a44" }, // tab stops are 12.5% opaque
  46.         { "column": 4, "color": "#008dc454" },
  47.         { "column": 6, "color": "#5a5a5a44" },
  48.         { "column": 8, "color": "#5a5a5a44" },
  49.         { "column": 10, "color": "#5a5a5a44" },
  50.         { "column": 40, "color": "#5a5a5a44" }, // center line
  51.         { "column": 60, "color": "#5a5a5a44" }, // center line
  52.         { "column": 79, "color": "#09ff0036" }, // right rule minus one
  53.         { "column": 80, "color": "#ffd0003a" }, // right rule
  54.         { "column": 120, "color": "#ff730034" }, // extra right rule
  55.         { "column": 160, "color": "#ff000030" } // extra right rule
  56.     ],
  57.     "indentRainbow.updateDelay": 500, // 10 makes it super fast but may cost more resources
  58.     "indentRainbow.errorColor": "#ff00004b",
  59.     "indentRainbow.tabmixColor": "rgba(128,32,96,0.6)",
  60.     "indentRainbow.indicatorStyle": "light",
  61.     "indentRainbow.lightIndicatorStyleLineWidth": 1,
  62.     "explorer.compactFolders": true,
  63.     "explorer.confirmDragAndDrop": true,
  64.     "files.trimTrailingWhitespace": true,
  65.     "files.trimFinalNewlines": true,
  66.     "files.insertFinalNewline": true,
  67.     "explorer.fileNesting.enabled": true,
  68.     "explorer.fileNesting.expand": true,
  69.     "workbench.localHistory.enabled": true,
  70.     "workbench.editor.decorations.colors": true,
  71.     "workbench.startupEditor": "newUntitledFile",
  72.     "workbench.editorAssociations": {
  73.         "*.sql": "default"
  74.     },
  75.     "workbench.colorCustomizations": {
  76.         "terminal.background": "#3a3d49",
  77.         "terminalCursor.background": "#A5A2A2",
  78.         "terminalCursor.foreground": "#A5A2A2",
  79.         "terminal.ansiBlack": "#272A34",
  80.         "terminal.ansiBlue": "#FFF",
  81.         "terminal.ansiBrightBlack": "#5C5855",
  82.         "terminal.ansiBrightBlue": "#FFF",
  83.         "terminal.ansiBrightCyan": "#B5E4F4",
  84.         "terminal.ansiBrightGreen": "#3cff00",
  85.         "terminal.ansiBrightMagenta": "#A16A94",
  86.         "terminal.ansiBrightRed": "#DB2D20",
  87.         "terminal.ansiBrightWhite": "#F7F7F7",
  88.         "terminal.ansiBrightYellow": "#FDED02",
  89.         "terminal.ansiCyan": "#B5E4F4",
  90.         "terminal.ansiGreen": "#DB2D20",
  91.         "terminal.ansiMagenta": "#A16A94",
  92.         "terminal.ansiRed": "#DB2D20",
  93.         "terminal.ansiWhite": "#A5A2A2",
  94.         "terminal.ansiYellow": "#FDED02",
  95.         "minimap.errorHighlight": "#db2c207c",
  96.         "minimap.warningHighlight": "#fdec026b",
  97.         "minimap.size": "fit",
  98.         "editorRuler.foreground": "#afafaf47",
  99.         "editorOverviewRuler.warningForeground": "#00000000"
  100.     },
  101.     "workbench.editor.languageDetectionHints": {
  102.         "untitledEditors": true,
  103.         "notebookEditors": false
  104.     },
  105.     "vscode_custom_css.imports": [
  106.         "https://raw.githubusercontent.com/hfmiguel/vs-code-custom-css-loader/main/style.css"
  107.     ],
  108.     "vscode_custom_css.statusbar": true,
  109.     "todohighlight.isEnable": true,
  110.     "remote.WSL.fileWatcher.polling": true, //docker
  111.     "remote.WSL.fileWatcher.pollingInterval": 500, //docker
  112.     "files.associations": {
  113.         ".sequelizerc": "javascript",
  114.         ".stylelintrc": "json",
  115.         ".prettierrc": "json",
  116.         "*.tsx": "typescriptreact",
  117.         "*.ts": "typescript",
  118.         "*.log.*": "log",
  119.         "*.log": "log",
  120.         "*.module": "php",
  121.         ".php": "php"
  122.     },
  123.     "typescript.tsserver.log": "off",
  124.     "material-icon-theme.activeIconPack": "nest",
  125.     "javascript.updateImportsOnFileMove.enabled": "always",
  126.     "typescript.updateImportsOnFileMove.enabled": "never",
  127.     "gitlens.views.branches.files.layout": "tree",
  128.     "gitlens.advanced.messages": {
  129.         "suppressGitVersionWarning": true
  130.     },
  131.     "gitlens.views.formats.commits.description": "${author, }${agoOrDate} ${tips}",
  132.     "gitlens.views.repositories.showIncomingActivity": true,
  133.     "gitlens.views.repositories.files.layout": "tree",
  134.     "gitlens.views.repositories.includeWorkingTree": true,
  135.     "gitlens.views.remotes.files.layout": "tree",
  136.     "gitlens.views.remotes.branches.layout": "tree",
  137.     "github.copilot.inlineSuggest.enable": true,
  138.     "github.copilot.editor.enableAutoCompletions": true,
  139.     "github.copilot.enable": {
  140.         "*": true,
  141.         "plaintext": true,
  142.         "markdown": true,
  143.         "scminput": false,
  144.         "yaml": true,
  145.         "php": true,
  146.         "js": true,
  147.         "javascript": true,
  148.         "json": true,
  149.         "html": true,
  150.         "blade": true,
  151.         "blade.php": true,
  152.         "css": true,
  153.         "scss": true,
  154.         "less": true,
  155.         "typescript": true,
  156.         "typescriptreact": true,
  157.         "javascriptreact": true,
  158.         "vue": true,
  159.         "python": true,
  160.         "java": true
  161.     },
  162.     "files.refactoring.autoSave": true,
  163.     "files.autoSave": "off",
  164.     "files.exclude": {
  165.         "**/.git": true,
  166.         "**/.svn": true,
  167.         "**/.hg": true,
  168.         "**/CVS": true,
  169.         "**/.DS_Store": true,
  170.         "**/.firebase": true,
  171.         "**/node_modules": true,
  172.         "**/vendor": false,
  173.         "**/bower_components": true,
  174.         "**/.sql": true
  175.     },
  176.     "files.watcherExclude": {
  177.         "**/.git/objects/**": true,
  178.         "**/.git/subtree-cache/**": true,
  179.         "**/node_modules/**": true,
  180.         "**/node_modules/*/**": true,
  181.         "node_modules/**": true,
  182.         "**/node_modules/": true,
  183.         "**/node_modules": true,
  184.         "**/vendor/**": true,
  185.         "vendor/**": true,
  186.         "/vendor/*": true,
  187.         "**/vendor/": true,
  188.         "**/bower_components": true,
  189.         "**/.sql": true,
  190.         "**/laradock/**": true,
  191.         "laradock/**": true,
  192.         "/laradock/*": true
  193.     },
  194.     "git.confirmSync": false,
  195.     "git.enableSmartCommit": true,
  196.     "intelephense.completion.fullyQualifyGlobalConstantsAndFunctions": true,
  197.     "intelephense.files.associations": ["*.php", "*.phtml"],
  198.     "intelephense.rename.namespaceMode": "all",
  199.     "intelephense.diagnostics.enable": true,
  200.     "namespaceResolver.showMessageOnStatusBar": true,
  201.     "artisan.php.location": "",
  202.     "settingsSync.ignoredSettings": [],
  203.     "window.menuBarVisibility": "visible",
  204.     "javascript.referencesCodeLens.enabled": true,
  205.     "namespaceResolver.highlightOnOpen": true,
  206.     "namespaceResolver.highlightOnSave": true,
  207.     "namespaceResolver.sortAlphabetically": true,
  208.     "namespaceResolver.sortNatural": true,
  209.     "namespaceResolver.sortOnSave": true,
  210.     "redhat.telemetry.enabled": true,
  211.     "yaml.schemas": {
  212.         "file:///c%3A/Users/henri/.vscode/extensions/atlassian.atlascode-2.9.1/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
  213.     },
  214.     "markdown.preview.breaks": true,
  215.     "codesnap.showWindowTitle": true,
  216.     "codesnap.realLineNumbers": true,
  217.     "codesnap.shutterAction": "copy",
  218.     "javascript.validate.enable": false,
  219.     "javascript.suggest.autoImports": true,
  220.     "typescript.suggest.autoImports": true,
  221.     "diffEditor.ignoreTrimWhitespace": true,
  222.     "material-icon-theme.folders.theme": "specific",
  223.     "docker.volumes.sortBy": "Label",
  224.     "docker.containers.groupBy": "Compose Project Name",
  225.     "docker.containers.label": "ContainerName",
  226.     "docker.containers.description": ["Status"],
  227.     "terminal.integrated.scrollback": 10000,
  228.     "terminal.integrated.defaultProfile.windows": "Debian (WSL)",
  229.     "terminal.integrated.confirmOnExit": "always",
  230.     "terminal.integrated.gpuAcceleration": "on",
  231.     "terminal.integrated.profiles.linux": {
  232.         "bash": {
  233.             "path": "bash",
  234.             "icon": "terminal-bash"
  235.         },
  236.         "zsh": {
  237.             "path": "zsh"
  238.         },
  239.         "fish": {
  240.             "path": "fish"
  241.         },
  242.         "tmux": {
  243.             "path": "tmux",
  244.             "icon": "terminal-tmux"
  245.         },
  246.         "pwsh": {
  247.             "path": "pwsh",
  248.             "icon": "terminal-powershell"
  249.         },
  250.         "sh (2)": {
  251.             "path": "/usr/bin/sh"
  252.         }
  253.     },
  254.     "terminal.integrated.defaultProfile.linux": "bash",
  255.     "terminal.integrated.profiles.windows": {
  256.         "PowerShell": {
  257.             "source": "PowerShell",
  258.             "icon": "terminal-powershell"
  259.         },
  260.         "Command Prompt": {
  261.             "path": [
  262.                 "${env:windir}\\Sysnative\\cmd.exe",
  263.                 "${env:windir}\\System32\\cmd.exe"
  264.             ],
  265.             "args": [],
  266.             "icon": "terminal-cmd"
  267.         },
  268.         "Git Bash": {
  269.             "source": "Git Bash"
  270.         },
  271.         "Windows PowerShell": {
  272.             "path": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
  273.         },
  274.         "Debian (WSL)": {
  275.             "path": "C:\\WINDOWS\\System32\\wsl.exe",
  276.             "args": ["-d", "Debian"]
  277.         }
  278.     },
  279.     "git.ignoreLegacyWarning": true,
  280.     "sync.autoDownload": true,
  281.     "turboConsoleLog.addSemicolonInTheEnd": true,
  282.     "turboConsoleLog.insertEmptyLineAfterLogMessage": true,
  283.     "turboConsoleLog.logType": "debug",
  284.     "turboConsoleLog.quote": "`",
  285.     "docthis.includeAuthorTag": true,
  286.     "docthis.includeDescriptionTag": true,
  287.     "docthis.inferTypesFromNames": true,
  288.     "docthis.returnsTag": true,
  289.     "better-comments.highlightPlainText": true,
  290.     "better-comments.tags": [
  291.         {
  292.             "tag": "!",
  293.             "color": "#FF2D00",
  294.             "strikethrough": false,
  295.             "underline": false,
  296.             "backgroundColor": "transparent",
  297.             "bold": false,
  298.             "italic": false
  299.         },
  300.         {
  301.             "tag": "?",
  302.             "color": "#3498DB",
  303.             "strikethrough": false,
  304.             "underline": false,
  305.             "backgroundColor": "transparent",
  306.             "bold": false,
  307.             "italic": false
  308.         },
  309.         {
  310.             "tag": "//",
  311.             "color": "#474747",
  312.             "strikethrough": true,
  313.             "underline": false,
  314.             "backgroundColor": "transparent",
  315.             "bold": false,
  316.             "italic": false
  317.         },
  318.         {
  319.             "tag": "todo",
  320.             "color": "#FF8C00",
  321.             "strikethrough": false,
  322.             "underline": false,
  323.             "backgroundColor": "transparent",
  324.             "bold": false,
  325.             "italic": false
  326.         },
  327.         {
  328.             "tag": "*",
  329.             "color": "#98C379",
  330.             "strikethrough": false,
  331.             "underline": false,
  332.             "backgroundColor": "transparent",
  333.             "bold": false,
  334.             "italic": false
  335.         }
  336.     ],
  337.     "thunder-client.saveToWorkspace": false,
  338.     "editor.defaultFormatter": "esbenp.prettier-vscode",
  339.     "editor.formatOnPaste": false,
  340.     "editor.formatOnType": false,
  341.     "blade.format.enable": true,
  342.     "editor.formatOnSave": true,
  343.     "editor.formatOnSaveMode": "file",
  344.     "editor.codeActionsOnSave": {
  345.         "source.formatDocument": true,
  346.         "source.fixAll.eslint": false
  347.     },
  348.     "[shellscript]": {
  349.         "editor.defaultFormatter": "shakram02.bash-beautify"
  350.     },
  351.     "[json]": {
  352.         "editor.defaultFormatter": "vscode.json-language-features"
  353.     },
  354.     "[jsonc]": {
  355.         "editor.defaultFormatter": "esbenp.prettier-vscode"
  356.     },
  357.     "[blade]": {
  358.         "editor.defaultFormatter": "shufo.vscode-blade-formatter",
  359.         "editor.autoClosingBrackets": "always"
  360.     },
  361.     "[php]": {
  362.         "editor.defaultFormatter": "bmewburn.vscode-intelephense-client",
  363.         "files.insertFinalNewline": true
  364.     },
  365.     "[html]": {
  366.         "editor.defaultFormatter": "esbenp.prettier-vscode"
  367.     },
  368.     "[javascript]": {
  369.         "editor.defaultFormatter": "esbenp.prettier-vscode",
  370.         "editor.tabSize": 2,
  371.         "prettier.tabWidth": 4
  372.     },
  373.     "[javascriptreact]": {
  374.         "editor.defaultFormatter": "esbenp.prettier-vscode",
  375.         "editor.tabSize": 2
  376.     },
  377.     "[typescriptreact]": {
  378.         "editor.defaultFormatter": "esbenp.prettier-vscode"
  379.     },
  380.     "[typescript]": {
  381.         "editor.defaultFormatter": "esbenp.prettier-vscode"
  382.     },
  383.     "[vue]": {
  384.         "editor.defaultFormatter": "esbenp.prettier-vscode"
  385.     },
  386.     "[sql]": {
  387.         "editor.defaultFormatter": "adpyke.vscode-sql-formatter"
  388.     },
  389.     "[dockerfile]": {
  390.         "editor.defaultFormatter": "ms-azuretools.vscode-docker"
  391.     },
  392.     "[dockercompose]": {
  393.         "editor.defaultFormatter": "ms-azuretools.vscode-docker"
  394.     },
  395.     "[yaml]": {
  396.         "editor.defaultFormatter": "redhat.vscode-yaml"
  397.     },
  398.     "[nginx]": {
  399.         "editor.defaultFormatter": "raynigon.nginx-formatter"
  400.     },
  401.     "[css]": {
  402.         "editor.defaultFormatter": "esbenp.prettier-vscode"
  403.     },
  404.     "[scss]": {
  405.         "editor.defaultFormatter": "vscode.css-language-features"
  406.     },
  407.     "[dotenv]": {
  408.         "editor.defaultFormatter": "foxundermoon.shell-format"
  409.     },
  410.     "[xml]": {
  411.         "editor.defaultFormatter": "redhat.vscode-xml"
  412.     },
  413.     "[markdown]": {
  414.         "editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
  415.     },
  416.     "codemetrics.basics.ComplexityColorHigh": "#ea444d",
  417.     "codemetrics.basics.ComplexityLevelExtreme": 50,
  418.     "codemetrics.basics.ComplexityLevelHigh": 25,
  419.     "codemetrics.basics.ComplexityLevelNormal": 12,
  420.     "codemetrics.basics.DiagnosticsEnabled": true,
  421.     "codemetrics.basics.ComplexityColorExtreme": "#9e2e34",
  422.     "prettier.printWidth": 80,
  423.     "prettier.tabWidth": 2,
  424.     "prettier.useTabs": true,
  425.     "prettier.semi": true,
  426.     "prettier.singleQuote": true,
  427.     "prettier.jsxSingleQuote": false,
  428.     "prettier.trailingComma": "all",
  429.     "prettier.bracketSpacing": true,
  430.     "prettier.bracketSameLine": false,
  431.     "prettier.arrowParens": "avoid",
  432.     "prettier.requirePragma": true,
  433.     "prettier.insertPragma": true,
  434.     "prettier.endOfLine": "lf",
  435.     "prettier.requireConfig": false,
  436.     "prettier.singleAttributePerLine": true,
  437.     "prettier.htmlWhitespaceSensitivity": "strict",
  438.     "eslint.run": "onSave",
  439.     "eslint.enable": true,
  440.     "eslint.alwaysShowStatus": true,
  441.     "eslint.options": {
  442.         "extensions": [".js", ".html", ".vue", ".jsx", ".tsx", ".ts"]
  443.     },
  444.     "eslint.validate": [
  445.         "js",
  446.         "babel",
  447.         "babelrc",
  448.         "babel-javascript",
  449.         "javascript",
  450.         "typescript",
  451.         "html",
  452.         "vue",
  453.         "javascriptreact",
  454.         "typescriptreact"
  455.     ],
  456.     "eslint.probe": ["javascript", "javascriptreact", "vue"],
  457.     "emmet.triggerExpansionOnTab": true,
  458.     "emmet.syntaxProfiles": {
  459.         "javascript": "jsx"
  460.     },
  461.     "emmet.includeLanguages": {
  462.         "javascript": "javascriptreact"
  463.     },
  464.     // END CONFIG DO JSON DO PROJETO
  465.     "LaravelExtraIntellisense.modelsPaths": [
  466.         "app/Models",
  467.         "app/Models/Entities",
  468.         "app/Entities",
  469.         "app/Entity"
  470.     ],
  471.     "workbench.productIconTheme": "material-product-icons",
  472.     "cSpell.enableFiletypes": ["blade"],
  473.     "cSpell.userWords": ["Livewire"],
  474.     "editor.inlineSuggest.showToolbar": "always",
  475.     "intelephense.diagnostics.argumentCount": true,
  476.     "intelephense.format.braces": "psr12",
  477.     "intelephense.diagnostics.unexpectedTokens": false,
  478.     "intelephense.diagnostics.undefinedTypes": false,
  479.     "intelephense.files.exclude": [
  480.         "**/.git/**",
  481.         "**/.svn/**",
  482.         "**/.hg/**",
  483.         "**/CVS/**",
  484.         "**/.DS_Store/**",
  485.         "**/node_modules/**",
  486.         "**/bower_components/**",
  487.         "**/vendor/**/{Tests,tests}/**",
  488.         "**/.history/**"
  489.     ],
  490.     "nginx-conf-hint.syntax": "sublime",
  491.     "conventionalCommits.lineBreak": "\\n",
  492.     "conventionalCommits.showEditor": true,
  493.     "conventionalCommits.editor.keepAfterSave": true,
  494.     "npm.keybindingsChangedWarningShown": true,
  495.     "todo-tree.general.showActivityBarBadge": true,
  496.     "todo-tree.general.statusBar": "tags",
  497.     "todo-tree.general.showIconsInsteadOfTagsInStatusBar": true,
  498.     "todo-tree.general.tags": ["BUG", "HACK", "FIXME", "TODO", "FIX", "FEAT"],
  499.     "todo-tree.filtering.excludeGlobs": ["**/node_modules/*/**", "public/"],
  500.     "todo-tree.tree.showCountsInTree": true,
  501.     "todo-tree.regex.enableMultiLine": true,
  502.     "todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^[ \\t]*(-|\\d+\\.))\\s*(\\*?\\s*($TAGS))",
  503.     "laravelGotoController.routeListCommand": "artisan route:list --json",
  504.     "eslint.useESLintClass": true,
  505.     "phpcs.lintOnType": false,
  506.     "phpcs.showSources": true,
  507.     "markdownlint.run": "onSave",
  508.     "intelephense.diagnostics.run": "onSave",
  509.     "window.zoomLevel": 1
  510. }
  511.  
Tags: vscode
Add Comment
Please, Sign In to add comment