Last active
February 8, 2025 15:11
-
-
Save willhoffmann/c2e01845b751db5c3a2ddbdbbaed4a9a to your computer and use it in GitHub Desktop.
Setting VSCode
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
{ | |
"editor.fontSize": 14, | |
"editor.lineHeight": 1.8, | |
"javascript.suggest.autoImports": true, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"editor.rulers": [ | |
80, | |
120 | |
], | |
"extensions.ignoreRecommendations": true, | |
"typescript.tsserver.log": "off", | |
"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" | |
}, | |
"tailwindCSS.experimental.classRegex": [ | |
[ | |
"tv\\(([^)]*)\\)", | |
"[\"']([^\"']*).*?[\"']" | |
] | |
], | |
"editor.parameterHints.enabled": false, | |
"editor.renderLineHighlight": "gutter", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"editor.suggestSelection": "first", | |
"explorer.confirmDelete": false, | |
"terminal.integrated.showExitAlert": false, | |
"[prisma]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "Prisma.prisma" | |
}, | |
"typescript.suggest.autoImports": true, | |
"terminal.integrated.env.osx": { | |
"FIG_NEW_SESSION": "1" | |
}, | |
"workbench.editor.labelFormat": "short", | |
"editor.fontLigatures": true, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx" | |
}, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"explorer.compactFolders": false, | |
"git.enableSmartCommit": true, | |
"editor.accessibilitySupport": "off", | |
"explorer.confirmDragAndDrop": false, | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.fontFamily": "Fira Code", | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": "explicit" | |
}, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"graphql" | |
], | |
"editor.semanticHighlighting.enabled": false, | |
"breadcrumbs.enabled": false, | |
"workbench.productIconTheme": "fluent-icons", | |
"editor.fontFamily": "Fira Code", | |
"editor.tabSize": 2, | |
"files.exclude": { | |
"**\/CVS": true, | |
"**\/.DS_Store": true, | |
"**\/.hg": true, | |
"**\/.svn": true, | |
"**\/.git": true, | |
}, | |
"workbench.iconTheme": "symbols", | |
"terminal.integrated.gpuAcceleration": "off", | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"window.commandCenter": true, | |
"git.openRepositoryInParentFolders": "always", | |
"symbols.hidesExplorerArrows": false, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
}, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.minimap.enabled": false, | |
"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*" | |
}, | |
"workbench.colorTheme": "Min Dark", | |
"tabnine.experimentalAutoImports": true, | |
"security.workspace.trust.untrustedFiles": "newWindow", | |
"prisma.showPrismaDataPlatformNotification": false, | |
"[dart]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.rulers": [ | |
80 | |
], | |
"editor.selectionHighlight": false, | |
"editor.suggestSelection": "first", | |
"editor.tabCompletion": "onlySnippets", | |
"editor.wordBasedSuggestions": "off" | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
}, | |
"vs-kubernetes": { | |
"vscode-kubernetes.kubectl-path-linux": "/home/will/.local/state/vs-kubernetes/tools/kubectl/kubectl", | |
"vscode-kubernetes.minikube-path-linux": "/home/will/.local/state/vs-kubernetes/tools/minikube/linux-amd64/minikube", | |
"vscode-kubernetes.helm-path-linux": "/home/will/.local/state/vs-kubernetes/tools/helm/linux-amd64/helm" | |
}, | |
"editor.defaultFoldingRangeProvider": "inferrinizzard.prettier-sql-vscode", | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"[sql]": { | |
"editor.defaultFormatter": "inferrinizzard.prettier-sql-vscode" | |
}, | |
"[xml]": { | |
"editor.defaultFormatter": "redhat.vscode-xml" | |
}, | |
"editor.unicodeHighlight.ambiguousCharacters": false, | |
"editor.formatOnSave": true, | |
"[go]": { | |
"editor.defaultFormatter": "golang.go" | |
}, | |
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": false, | |
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false, | |
"prettier.experimentalTernaries": true, | |
"prettier.trailingComma": "all" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment