Last active
June 21, 2024 14:29
-
-
Save rodrigodotdev/2f9a3b5b1312285edbb2b4df2032017f to your computer and use it in GitHub Desktop.
vscode-settings.json
This file contains 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
{ | |
/* THEME */ | |
"workbench.colorTheme": "Catppuccin Mocha", | |
"workbench.iconTheme": "catppuccin-perfect-mocha", | |
"workbench.productIconTheme": "icons-carbon", | |
/* UI */ | |
"workbench.layoutControl.enabled": false, | |
"workbench.editor.empty.hint": "hidden", | |
"workbench.editor.labelFormat": "short", | |
"window.titleBarStyle": "custom", | |
"window.menuBarVisibility": "toggle", | |
"symbols.hidesExplorerArrows": false, | |
// "workbench.statusBar.visible": false, | |
// "workbench.activityBar.location": "hidden", | |
/* APC */ | |
"apc.activityBar": { | |
"position": "bottom", | |
"hideSettings": true, | |
"size": 28 | |
}, | |
"apc.statusBar": { | |
"position": "editor-bottom", | |
"height": 28, | |
"fontSize": 12 | |
}, | |
"apc.electron": { | |
"frame": false | |
}, | |
"apc.header": { | |
"height": 36 | |
}, | |
"apc.listRow": { | |
"height": 24 | |
}, | |
"apc.font.family": "Inter", | |
"apc.stylesheet": { | |
".title-label > h2": "display: none", | |
".nosidebar .inline-tabs-placeholder": "width: 75px", | |
".pane-header": "padding: 0 8px", | |
".pane-body": "padding: 8px", | |
".monaco-list-row": "border-radius: 4px;", | |
".monaco-workbench .monaco-list:not(.element-focused):focus:before": "display: none;", | |
// ".titlebar-center": "display: none !important", | |
// ".titlebar-right": "display: none !important", | |
// ".editor-actions": "display: none", | |
// ".split-view-view:first-child .pane-header": "display: none !important;", | |
}, | |
/* EXPLORER */ | |
"explorer.sortOrder": "foldersNestsFiles", | |
"explorer.fileNesting.patterns": { | |
"package.json": ".eslint*, prettier*, tsconfig*, vite*, pnpm-lock*, bun.lockb, nest*", | |
"tailwind.config.js": "tailwind.config*, postcss.config*", | |
".env.local": ".env*", | |
".env": ".env*" | |
}, | |
"explorer.fileNesting.enabled": true, | |
"explorer.confirmDelete": false, | |
"explorer.compactFolders": false, | |
"explorer.confirmDragAndDrop": false, | |
/* FONT */ | |
"editor.fontFamily": "JetBrainsMono Nerd Font", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 14, | |
"editor.lineHeight": 1.8, | |
/* EDITOR */ | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
"editor.parameterHints.enabled": false, | |
"editor.renderLineHighlight": "gutter", | |
"editor.suggestSelection": "first", | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"editor.accessibilitySupport": "off", | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit" | |
}, | |
"editor.semanticHighlighting.enabled": false, | |
"editor.tabSize": 4, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.minimap.enabled": false, | |
"editor.bracketPairColorization.enabled": true, | |
"editor.guides.bracketPairs": "active", | |
"editor.scrollbar.vertical": "hidden", | |
/* TERMINAL */ | |
"terminal.integrated.gpuAcceleration": "off", | |
"terminal.integrated.showExitAlert": false, | |
"terminal.integrated.defaultProfile.linux": "zsh", | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font", | |
"terminal.integrated.env.linux": {}, | |
/* GIT */ | |
"git.openRepositoryInParentFolders": "always", | |
"git.enableSmartCommit": true, | |
"git.autofetch": true, | |
"gitlens.codeLens.authors.enabled": false, | |
"gitlens.codeLens.recentChange.enabled": false, | |
/* FILES */ | |
"files.associations": { | |
".env.*": "dotenv", | |
".prettierrc": "json", | |
"*.css": "css" | |
}, | |
"symbols.files.associations": { | |
"*.module.ts": "nest", | |
"*.guard.ts": "typescript", | |
"*.spec.ts": "ts-test", | |
"*.e2e-spec.ts": "ts-test", | |
"vitest.config.e2e.ts": "vite", | |
".env.example": "gear" | |
}, | |
/* MISCELLANEOUS */ | |
"workbench.startupEditor": "newUntitledFile", | |
"docker.composeCommand": "docker compose", | |
"javascript.suggest.autoImports": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"extensions.ignoreRecommendations": true, | |
"typescript.tsserver.log": "off", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"typescript.suggest.autoImports": true, | |
"tailwindCSS.experimental.classRegex": [ | |
[ | |
"tv\\(([^)]*)\\)", | |
"[\"'`]([^\"'`]*).*?[\"'`]" | |
] | |
], | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"graphql" | |
], | |
"security.workspace.trust.untrustedFiles": "newWindow", | |
"files.exclude": { | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/.hg": true, | |
"**/.svn": true, | |
"**/.git": true, | |
".vscode": true | |
}, | |
"[prisma]": { | |
"editor.formatOnSave": true | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[php]": { | |
"editor.defaultFormatter": "open-southeners.laravel-pint" | |
}, | |
"update.mode": "start", | |
"update.showReleaseNotes": false, | |
"github.copilot.editor.enableAutoCompletions": true, | |
"laravel-pint.enable": true, | |
"editor.formatOnSave": true, | |
"console-ninja.featureSet": "Community", | |
/* CSPELL */ | |
"cSpell.language": "en,pt,pt_BR", | |
"cSpell.enableFiletypes": [ | |
"!asciidoc", | |
"!c", | |
"!cpp", | |
"!csharp", | |
"!go", | |
"!handlebars", | |
"!haskell", | |
"!jade", | |
"!java", | |
"!latex", | |
"!php", | |
"!pug", | |
"!python", | |
"!restructuredtext", | |
"!rust", | |
"!scala", | |
"!scss" | |
], | |
"cSpell.userWords": [ | |
"bootcamp", | |
"chakra", | |
"checkin", | |
"checkins", | |
"clsx", | |
"Codegen", | |
"datadog", | |
"Datetime", | |
"dayjs", | |
"Dotenv", | |
"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" | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment