Created
December 4, 2024 17:28
-
-
Save jotapepinheiro/520b90b62f635796099c25ec73ffb8f7 to your computer and use it in GitHub Desktop.
config
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
| { | |
| "workbench.startupEditor": "newUntitledFile", | |
| "workbench.editor.labelFormat": "short", | |
| "workbench.iconTheme": "symbols", | |
| "workbench.activityBar.location": "default", | |
| "workbench.statusBar.visible": true, | |
| "symbols.hidesExplorerArrows": false, | |
| "breadcrumbs.enabled": false, | |
| //"editor.mouseWheelZoom": true, | |
| // group files by type in explorer | |
| "explorer.fileNesting.enabled": true, | |
| "explorer.sortOrder": "foldersNestsFiles", | |
| "explorer.fileNesting.patterns": { | |
| "package.json": ".eslint*, prettier*, tsconfig*, vite*, nest*, pnpm-lock*, bun.lock*, package-lock*, yarn.lock*", | |
| "tailwind.config.*": "postcss.config*", | |
| "next.config.*": "next.config*, next-env*", | |
| ".env.local": ".env*", | |
| ".env": ".env*" | |
| }, | |
| // RAM | |
| "telemetry.enableTelemetry": false, | |
| //exclude fies & folders in search indexing | |
| "search.exclude": { | |
| "**/node_modules": true, | |
| "**/docker": true, | |
| "**/css": true, | |
| "**/js": true, | |
| "**/wp-includes": true, | |
| "**/wp-admin": true | |
| }, | |
| //exclude fies & folders for watcher service | |
| "files.watcherExclude": { | |
| "**/.git/objects/**": true, | |
| "**/.git/subtree-cache/**": true, | |
| "**/node_modules/**": true, | |
| "**/css/**": true, | |
| "**/js/**": true, | |
| "**/wp-includes/**": true, | |
| "**/wp-admin/**": true, | |
| "env-*": true | |
| }, | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| "**/CVS": true, | |
| "**/.DS_Store": true, | |
| "**/node_modules": false | |
| }, | |
| "editor.tabSize": 2, | |
| "editor.fontSize": 14, | |
| "editor.lineHeight": 1.8, | |
| "editor.fontFamily": "Recursive Mono Casual Static", | |
| "editor.fontLigatures": true, | |
| "editor.semanticHighlighting.enabled": false, | |
| "editor.rulers": [80, 120], | |
| "editor.renderLineHighlight": "gutter", | |
| "editor.parameterHints.enabled": false, | |
| "editor.inlineSuggest.enabled": true, | |
| "editor.accessibilitySupport": "off", | |
| "editor.suggestSelection": "first", | |
| "editor.minimap.enabled": false, | |
| "editor.scrollbar.vertical": "hidden", | |
| "editor.scrollbar.horizontal": "hidden", | |
| // Prettier | |
| // "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| // "editor.codeActionsOnSave": { | |
| // "source.fixAll.eslint": "explicit", | |
| // "source.fixAll.format": "explicit" | |
| // }, | |
| // Biome | |
| // "editor.defaultFormatter": "biomejs.biome", | |
| // "editor.codeActionsOnSave": { | |
| // "quickfix.biome": "explicit", | |
| // "source.organizeImports.biome": "explicit" | |
| // }, | |
| "editor.formatOnPaste": false, | |
| "editor.formatOnSave": true, | |
| "[php]": { | |
| "editor.defaultFormatter": "bmewburn.vscode-intelephense-client" | |
| }, | |
| "[handlebars]": { | |
| "editor.formatOnSave": false, | |
| "editor.formatOnPaste": false | |
| }, | |
| "[prisma]": { | |
| "editor.defaultFormatter": "Prisma.prisma" | |
| }, | |
| "explorer.compactFolders": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.confirmDelete": false, | |
| "terminal.integrated.fontFamily": "MesloLGS NF", | |
| "terminal.integrated.fontSize": 14, | |
| "terminal.integrated.fontWeightBold": "normal", | |
| "files.autoSave": "onFocusChange", | |
| "files.associations": { | |
| ".sequelizerc": "javascript", | |
| ".stylelintrc": "json", | |
| ".prettierrc": "json", | |
| "*.tsx": "typescriptreact", | |
| ".env.*": "dotenv", | |
| "*.css": "tailwindcss" | |
| }, | |
| "emmet.syntaxProfiles": { "javascript": "jsx" }, | |
| "emmet.includeLanguages": { "javascript": "javascriptreact" }, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "github.copilot.advanced": {}, | |
| "github.copilot.enable": { | |
| "*": true, | |
| "plaintext": true, | |
| "markdown": false, | |
| "scminput": false, | |
| "yaml": false, | |
| "jsonc": true, | |
| "javascript": true | |
| }, | |
| "gitlens.codeLens.recentChange.enabled": false, | |
| "gitlens.codeLens.authors.enabled": false, | |
| "gitlens.codeLens.enabled": false, | |
| "git.enableSmartCommit": true, | |
| "typescript.tsserver.log": "off", | |
| "javascript.suggest.autoImports": true, | |
| "typescript.suggest.autoImports": true, | |
| "gitlens.defaultDateFormat": null, | |
| "redhat.telemetry.enabled": true, | |
| "git.autofetch": true, | |
| "terminal.integrated.env.osx": { | |
| "FIG_NEW_SESSION": "1", | |
| "CW_NEW_SESSION": "1", | |
| "Q_NEW_SESSION": "1" | |
| }, | |
| "typescript.updateImportsOnFileMove.enabled": "never", | |
| "codesnap.backgroundColor": "transparent", | |
| "codesnap.transparentBackground": true, | |
| "codesnap.boxShadow": "0 0 0", | |
| "liveServer.settings.donotVerifyTags": true, | |
| "cSpell.language": "en,pt_BR", | |
| "cSpell.userWords": [ | |
| "bootcamp", | |
| "chakra", | |
| "checkin", | |
| "checkins", | |
| "clsx", | |
| "Codegen", | |
| "datadog", | |
| "Datetime", | |
| "dayjs", | |
| "Dotenv", | |
| "DTOs", | |
| "Elysia", | |
| "esbuild", | |
| "fastify", | |
| "Fastify", | |
| "feedbackwidget", | |
| "ffprobe", | |
| "Hasher", | |
| "Hono", | |
| "ilike", | |
| "IUGU", | |
| "jamjuree", | |
| "jupiter", | |
| "liveblocks", | |
| "LIVEBLOCKS", | |
| "Marguerita", | |
| "middlewares", | |
| "mixpanel", | |
| "monaco", | |
| "nestjs", | |
| "omni", | |
| "Omni", | |
| "Onboarded", | |
| "pallas", | |
| "postgres", | |
| "postgresql", | |
| "prefetch", | |
| "reactflow", | |
| "roboto", | |
| "rocketseat", | |
| "rotion", | |
| "rsxp", | |
| "Sandpack", | |
| "shiki", | |
| "skylab", | |
| "sqlite", | |
| "supergraph", | |
| "svgr", | |
| "sympla", | |
| "tailwindcss", | |
| "textblock", | |
| "tiptap", | |
| "trpc", | |
| "TRPC", | |
| "tsup", | |
| "unfollow", | |
| "Unfollow", | |
| "unform", | |
| "Unform", | |
| "unmark", | |
| "upsert", | |
| "Usuario", | |
| "WEBPUSH" | |
| ], | |
| "cSpell.enableFiletypes": [ | |
| "!asciidoc", | |
| "!c", | |
| "!cpp", | |
| "!csharp", | |
| "!go", | |
| "!handlebars", | |
| "!haskell", | |
| "!jade", | |
| "!java", | |
| "!latex", | |
| "!php", | |
| "!pug", | |
| "!python", | |
| "!restructuredtext", | |
| "!rust", | |
| "!scala", | |
| "!scss" | |
| ], | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "terminal.integrated.showExitAlert": false, | |
| "splitHTMLAttributes.closingBracketOnNewLine": true, | |
| "extensions.ignoreRecommendations": true, | |
| // Upper size limit, in KB, that will count a package as a small package | |
| "importCost.smallPackageSize": 50, | |
| // Upper size limit, in KB, that will count a package as a medium package | |
| "importCost.mediumPackageSize": 100, | |
| // File extensions to be parsed by the Typescript parser | |
| "importCost.typescriptExtensions": ["\\.tsx?$"], | |
| // File extensions to be parsed by the Javascript parser | |
| "importCost.javascriptExtensions": ["\\.jsx?$"], | |
| // Which bundle size to display | |
| "importCost.bundleSizeDecoration": "both", | |
| // Display the 'calculating' decoration | |
| "importCost.showCalculatingDecoration": true, | |
| // Print debug messages in output channel | |
| "importCost.debug": false, | |
| "settingsSync.ignoredExtensions": [ | |
| "bradlc.vscode-tailwindcss", | |
| "github.copilot" | |
| ], | |
| "todo-tree.highlights.defaultHighlight": { | |
| "foreground": "#c3ff75", | |
| "icon": "check", | |
| "type": "text", | |
| "background": "#1c1c1c", | |
| "opacity": 50, | |
| "gutterIcon": true, | |
| "iconColor": "#41a9ff" | |
| }, | |
| "todo-tree.highlights.customHighlight": { | |
| "TODO": { | |
| "icon": "clock", | |
| "type": "line" | |
| }, | |
| "[ ]": { | |
| "background": "#ff0000" | |
| }, | |
| "[x]": { | |
| "background": "#c3ff75" | |
| }, | |
| "FIXME": { | |
| "foreground": "#ffe100", | |
| "icon": "eye", | |
| "iconColor": "yellow", | |
| "gutterIcon": true, | |
| "type": "text-and-comment" | |
| }, | |
| "BUG": { | |
| "foreground": "#ff0000", | |
| "icon": "bug", | |
| "iconColor": "red", | |
| "gutterIcon": true, | |
| "type": "text-and-comment" | |
| } | |
| }, | |
| "todo-tree.general.tagGroups": { | |
| "FIXME": ["FIXME", "FIXIT", "FIX"] | |
| }, | |
| "todo-tree.general.tags": ["BUG", "HACK", "FIX", "TODO", "XXX", "[ ]", "[x]"], | |
| // ES7+ React/Redux/React-Native snippets | |
| "javascript.inlayHints.functionLikeReturnTypes.enabled": false, | |
| "javascript.inlayHints.parameterTypes.enabled": false, | |
| "javascript.inlayHints.propertyDeclarationTypes.enabled": true, | |
| "javascript.inlayHints.variableTypes.enabled": true, | |
| "typescript.inlayHints.enumMemberValues.enabled": true, | |
| "typescript.inlayHints.functionLikeReturnTypes.enabled": false, | |
| "typescript.inlayHints.propertyDeclarationTypes.enabled": false, | |
| "typescript.inlayHints.parameterTypes.enabled": false, | |
| "typescript.inlayHints.variableTypes.enabled": false, | |
| // PHP | |
| "php.executables": { | |
| "v7.4": "/usr/local/opt/php@7.4/bin", | |
| "V8.0": "/usr/local/opt/php@8.0/bin/", | |
| "V8.1": "/usr/local/opt/php@8.1/bin/" | |
| }, | |
| "php.suggest.basic": false, | |
| "php.validate.enable": false, | |
| "emmet.excludeLanguages": ["markdown", "php"], | |
| "window.commandCenter": false, | |
| "workbench.layoutControl.enabled": false, | |
| "editor.codeLensFontFamily": "Recursive Mono Casual Static", | |
| "prisma.showPrismaDataPlatformNotification": false, | |
| "github.copilot.editor.enableAutoCompletions": true, | |
| "console-ninja.featureSet": "Community", | |
| "gitlens.views.branches.files.layout": "tree", | |
| "workbench.colorTheme": "Base16 Tomorrow Dark", | |
| "svg.preview.mode": "img" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment