Created
November 22, 2025 02:13
-
-
Save eriveltondasilva/440d9e921727db7d8bd4ae2a5f8e81bf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| // # PHP PROFILE | |
| // -> editor | |
| "editor.bracketPairColorization.enabled": true, | |
| "editor.bracketPairColorization.independentColorPoolPerBracketType": true, | |
| "editor.cursorBlinking": "phase", | |
| "editor.cursorStyle": "line", | |
| "editor.cursorSmoothCaretAnimation": "on", | |
| "editor.fontFamily": "'JetBrains Mono', Consolas, 'Courier New', monospace", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 14, | |
| "editor.formatOnSave": true, | |
| "editor.guides.bracketPairs": true, | |
| "editor.linkedEditing": true, | |
| "editor.minimap.enabled": false, | |
| "editor.renderLineHighlight": "gutter", | |
| "editor.smoothScrolling": true, | |
| // | |
| "editor.codeActionsOnSave": { | |
| "source.organizeImports": "always" | |
| }, | |
| "editor.rulers": [ | |
| { | |
| "color": "#47ff4730", | |
| "column": 80 | |
| }, | |
| { | |
| "color": "#edff4730", | |
| "column": 100 | |
| }, | |
| { | |
| "color": "#ff634730", | |
| "column": 120 | |
| } | |
| ], | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": [ | |
| "comment", | |
| "constant", // boolean, number, string... | |
| "keyword", // if, while... | |
| "storage.type" // let, const... | |
| ], | |
| "settings": { | |
| "fontStyle": "italic" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "keyword.operator", // ++, --, ==, !=, &&, || | |
| "entity.name.function" // function name | |
| ], | |
| "settings": { | |
| "fontStyle": "bold" | |
| } | |
| } | |
| ] | |
| }, | |
| // -> emmet | |
| "emmet.triggerExpansionOnTab": true, | |
| // | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact", | |
| "typescript": "typescriptreact" | |
| }, | |
| "emmet.syntaxProfiles": { | |
| "javascript": "jsx", | |
| "typescript": "tsx" | |
| }, | |
| // -> explorer | |
| "explorer.autoReveal": false, | |
| "explorer.compactFolders": false, | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.fileNesting.enabled": true, | |
| // | |
| "explorer.fileNesting.patterns": { | |
| "package.json": "package*, postcss*, vite*, next*, nest*, eslint*, prettier*, tailwind*, jsconfig*, tsconfig*, components*, .git*, .eslint*, .prettier*, .nvmrc*", | |
| "composer.json": "composer*, artisan, .editorconfig, php*, laradumps*, pint*, rector*, _ide_helper*", | |
| ".env": ".env*" | |
| }, | |
| "files.trimTrailingWhitespace": true, | |
| "files.associations": { | |
| "*.module": "php", | |
| "*.css": "tailwindcss" | |
| }, | |
| // | |
| "files.exclude": { | |
| "**/.next": true, | |
| "**/node_modules": true, | |
| "**/vendor": true | |
| }, | |
| // -> git | |
| "git.autofetch": true, | |
| "git.confirmSync": false, | |
| "git.enableSmartCommit": true, | |
| // -> javascript/typescript | |
| "javascript.suggest.autoImports": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.suggest.autoImports": true, | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| // -> workbench | |
| "workbench.colorTheme": "Bearded Theme Vivid Black", | |
| "workbench.editor.enablePreview": true, | |
| "workbench.externalBrowser": "edge", | |
| "workbench.iconTheme": "symbols", | |
| "workbench.layoutControl.enabled": false, | |
| "workbench.sideBar.location": "right", | |
| "workbench.startupEditor": "none", | |
| "workbench.tree.indent": 14, | |
| // -> terminal | |
| "terminal.integrated.fontSize": 14, | |
| "terminal.integrated.fontFamily": "'JetBrains Mono', Consolas, 'Courier New', monospace", | |
| "terminal.integrated.defaultProfile.windows": "Cmder", | |
| "terminal.integrated.profiles.windows": { | |
| "Cmder": { | |
| "path": "${env:windir}\\System32\\cmd.exe", | |
| "args": ["/k", "%cmder_root%\\vendor\\bin\\vscode_init.cmd"] | |
| } | |
| }, | |
| // -> formatter | |
| "[php]": { | |
| "editor.defaultFormatter": "bmewburn.vscode-intelephense-client" | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[javascriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[markdown]": { | |
| "editor.defaultFormatter": "yzhang.markdown-all-in-one" | |
| }, | |
| // # EXTENSIONS | |
| // -> better-comments | |
| "better-comments.highlightPlainText": true, | |
| "better-comments.tags": [ | |
| { | |
| "tag": "#", | |
| "color": "#0000FF", | |
| "strikethrough": false, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": true, | |
| "italic": false | |
| }, | |
| { | |
| "tag": "!", | |
| "color": "#FF2D00", | |
| "strikethrough": false, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| }, | |
| { | |
| "tag": "?", | |
| "color": "#3498DB", | |
| "strikethrough": false, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| }, | |
| { | |
| "tag": "//", | |
| "color": "#474747", | |
| "strikethrough": true, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| }, | |
| { | |
| "tag": "todo", | |
| "color": "#FF8C00", | |
| "strikethrough": false, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| }, | |
| { | |
| "tag": "*", | |
| "color": "#98C379", | |
| "strikethrough": false, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| } | |
| ], | |
| // -> cspell | |
| "cSpell.language": "en,pt,pt_BR,lorem", | |
| "cSpell.userWords": [ | |
| "analyse", | |
| "ansi", | |
| "autofetch", | |
| "Barryvdh", | |
| "biomejs", | |
| "bmewburn", | |
| "cmder", | |
| "Cmder", | |
| "cnpj", | |
| "codeium", | |
| "Containerização", | |
| "dayjs", | |
| "Debugbar", | |
| "Doesnt", | |
| "Encapsed", | |
| "erivelton", | |
| "Erivelton", | |
| "eriveltondasilva", | |
| "eriveltonsilva", | |
| "esbenp", | |
| "fastify", | |
| "flowbite", | |
| "headlessui", | |
| "hoverable", | |
| "inep", | |
| "inertiajs", | |
| "intelephense", | |
| "issets", | |
| "junstyle", | |
| "laradumps", | |
| "larastan", | |
| "laravel", | |
| "lexify", | |
| "lightningcss", | |
| "modyfi", | |
| "Monokai", | |
| "nesbot", | |
| "nestjs", | |
| "nullable", | |
| "numerify", | |
| "oklch", | |
| "onsave", | |
| "phar", | |
| "phpstan", | |
| "phpunit", | |
| "reguard", | |
| "Segoe", | |
| "Shadcn", | |
| "sonner", | |
| "Sonner", | |
| "Spatie", | |
| "strpos", | |
| "superadmin", | |
| "tabnine", | |
| "tailwindcss", | |
| "testid", | |
| "tightenco", | |
| "trivago", | |
| "unguard", | |
| "unsets", | |
| "windir", | |
| "youtube", | |
| "Youtube", | |
| "ziggy" | |
| ], | |
| // -> codeium | |
| "codeium.enableCodeLens": false, | |
| "codeium.disableSupercomplete": true, | |
| "codeium.enableConfig": { | |
| "*": true, | |
| "plaintext": true, | |
| "properties": true | |
| }, | |
| // -> code-runner | |
| "code-runner.clearPreviousOutput": true, | |
| "code-runner.executorMap": { | |
| "javascript": "node", | |
| "php": "php", | |
| "typescript": "tsx" | |
| }, | |
| // -> intelephense | |
| "intelephense.environment.documentRoot": "public/index.php", | |
| "intelephense.environment.phpVersion": "8.4", | |
| "intelephense.environment.includePaths": ["vendor"], | |
| // -> inertia | |
| "inertia.defaultExtension": ".tsx", | |
| "inertia.pages": "resources/js/pages/**/*.tsx", | |
| // -> other | |
| "projectManager.git.baseFolders": ["C:\\Users\\erivelton\\Herd"], | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "faker.locale": "pt_BR", | |
| "tabnine.experimentalAutoImports": true, | |
| "tabnine.codeLensEnabled": false, | |
| "tailwindCSS.classFunctions": [ | |
| "cva", | |
| "cx", | |
| "cn", | |
| "clsx", | |
| "twMerge", | |
| "twJoin" | |
| ], | |
| "tailwindCSS.experimental.classRegex": [ | |
| ["cva\\(((?:[^()]|\\([^()]*\\))*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"], | |
| ["cx\\(((?:[^()]|\\([^()]*\\))*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"] | |
| ], | |
| "editor.inlineSuggest.suppressSuggestions": true, | |
| "redhat.telemetry.enabled": true, | |
| "cody.commandCodeLenses": false, | |
| "cody.chat.defaultLocation": "editor", | |
| "cody.suggestions.mode": "auto-edit", | |
| "editor.inlineSuggest.showToolbar": "always", | |
| "geminicodeassist.inlineSuggestions.enableAuto": true, | |
| "diffEditor.codeLens": true, | |
| "explorer.confirmPasteNative": false, | |
| "github.copilot.enable": { | |
| "*": false, | |
| "plaintext": false, | |
| "markdown": false, | |
| "scminput": false | |
| }, | |
| "task.allowAutomaticTasks": "on", | |
| "explorer.sortOrder": "type" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment