Created
June 7, 2026 17:48
-
-
Save vdonoladev/0711c3f944888049c21699416bc236ac to your computer and use it in GitHub Desktop.
Minhas configurações personalizadas do editor VSCode
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
| { | |
| // GIT E GIT LENS | |
| "git.confirmSync": false, | |
| "git.autofetch": true, | |
| "git.enableSmartCommit": true, | |
| "git.openRepositoryInParentFolders": "always", | |
| "gitlens.codeLens.recentChange.enabled": false, | |
| "gitlens.codeLens.authors.enabled": false, | |
| "gitlens.ai.model": "vscode", | |
| "gitlens.ai.vscode.model": "copilot:gpt-4.1", | |
| // APARÊNCIA - UI - TEMAS - LAYOUT | |
| "workbench.colorTheme": "Hack The Box", | |
| "workbench.iconTheme": "symbols", | |
| "symbols.hidesExplorerArrows": false, | |
| "breadcrumbs.enabled": false, | |
| "workbench.statusBar.visible": false, | |
| "workbench.layoutControl.enabled": false, | |
| "workbench.startupEditor": "newUntitledFile", | |
| "workbench.editor.labelFormat": "short", | |
| "workbench.editor.empty.hint": "hidden", | |
| "workbench.activityBar.location": "default", | |
| "window.commandCenter": false, | |
| "window.titleBarStyle": "native", | |
| "window.menuBarVisibility": "toggle", | |
| // EDITOR: FONTE - MINIMAP - SCROLLBAR - DICAS - SUGESTÕES | |
| "editor.fontFamily": "JetBrains Mono", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 13, | |
| "editor.lineHeight": 1.4, | |
| "editor.tabSize": 2, | |
| "editor.rulers": [ | |
| 80, | |
| 120 | |
| ], | |
| "editor.minimap.enabled": false, | |
| "editor.scrollbar.vertical": "hidden", | |
| "editor.scrollbar.horizontal": "hidden", | |
| "editor.hideCursorInOverviewRuler": true, | |
| "editor.semanticHighlighting.enabled": false, | |
| "editor.stickyScroll.enabled": false, | |
| "editor.snippetSuggestions": "top", | |
| "editor.parameterHints.enabled": false, | |
| "editor.renderLineHighlight": "gutter", | |
| "editor.suggestSelection": "first", | |
| "editor.acceptSuggestionOnCommitCharacter": false, | |
| "editor.accessibilitySupport": "off", | |
| "editor.wordWrap": "on", | |
| "editor.formatOnSave": true, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.largeFileOptimizations": false, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": "explicit" | |
| }, | |
| // FORMATADORES POR LINGUAGEM | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[javascriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "vscode.typescript-language-features" | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features" | |
| }, | |
| "[css]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "vscode.json-language-features" | |
| }, | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "vscode.json-language-features" | |
| }, | |
| // JAVASCRIPT - TYPESCRIPT - ESLINT - EMMET | |
| "javascript.suggest.autoImports": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.suggest.autoImports": true, | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.preferences.preferTypeOnlyAutoImports": true, | |
| "eslint.validate": [ | |
| "javascript", | |
| "javascriptreact", | |
| "graphql" | |
| ], | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact" | |
| }, | |
| "emmet.syntaxProfiles": { | |
| "javascript": "jsx" | |
| }, | |
| // EXPLORER - FILE NESTING - ORGANIZAÇÃO DE ARQUIVOS | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.compactFolders": false, | |
| "explorer.sortOrder": "foldersNestsFiles", | |
| "explorer.fileNesting.enabled": true, | |
| "explorer.fileNesting.patterns": { | |
| "package.json": ".eslint*, prettier*, tsconfig*, vite*, pnpm-*, bun.lockb, nest*, package-lock*", | |
| "tailwind.config.*": "tailwind.config*, postcss.config*", | |
| ".env.local": ".env*", | |
| ".env": ".env*" | |
| }, | |
| "files.exclude": { | |
| "**/CVS": true, | |
| "**/.DS_Store": true, | |
| "**/.hg": true, | |
| "**/.svn": true, | |
| "**/.git": true, | |
| ".vscode": true | |
| }, | |
| // TERMINAL | |
| "terminal.integrated.showExitAlert": false, | |
| "terminal.integrated.fontSize": 13, | |
| "terminal.integrated.env.linux": {}, | |
| "terminal.integrated.gpuAcceleration": "on", | |
| // EXTENSÕES E RECOMENDAÇÕES | |
| "extensions.ignoreRecommendations": true, | |
| "liveServer.settings.donotVerifyTags": true, | |
| "github.copilot.nextEditSuggestions.enabled": true, | |
| "amazonQ.suppressPrompts": { | |
| "amazonQChatPairProgramming": true, | |
| "amazonQChatDisclaimer": true | |
| }, | |
| "chat.mcp.gallery.enabled": true, | |
| "[php]": { | |
| "editor.defaultFormatter": "bmewburn.vscode-intelephense-client", | |
| "editor.defaultFormatter": "open-southeners.laravel-pint", | |
| "editor.formatOnSave": true, | |
| }, | |
| "laravel-pint.enable": true, | |
| "php.suggest.basic": false, | |
| "prettier.tabWidth": 2, | |
| "editor.formatOnPaste": true, | |
| "php.validate.run": "onType", | |
| "phpcs.standard": "PSR2", | |
| "phpcs.executablePath": "/home/vdonoladev/.config/composer/vendor/bin/phpcs", | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment