Skip to content

Instantly share code, notes, and snippets.

@Alessandro0003
Last active March 22, 2024 00:37
Show Gist options
  • Save Alessandro0003/8664d4cf20e7f95e07fe3d1a95022e4b to your computer and use it in GitHub Desktop.
Save Alessandro0003/8664d4cf20e7f95e07fe3d1a95022e4b to your computer and use it in GitHub Desktop.
VSCode Settings βš™πŸš€
{
"editor.fontSize": 14,
"editor.lineHeight": 1.8,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"extensions.ignoreRecommendations": true,
"typescript.tsserver.log": "off",
"files.associations": {
".env.*": "dotenv",
".prettierrc": "json",
"*.css": "css",
"*.gql": "graphql",
},
"material-icon-theme.files.associations": {
"*.controller.ts": "nest-controller",
"*.service.ts": "nest-service",
"*.module.ts": "nest-module",
"*.resolver.ts": "nest-resolver",
"*.gateway.ts": "nest-gateway",
"*.middleware.ts": "nest-middleware",
"*.guard.ts": "nest-guard",
"*.spec.ts": "Test-ts",
"*.e2e-spec.ts": "Test-ts",
"vitest.config.e2e.ts": "vite",
".env-example": "gear",
},
"symbols.files.associations": {
"*.module.ts": "nest"
},
"symbols.hidesExplorerArrows": false,
"tailwindCSS.experimental.classRegex": [
["tv\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"]
],
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"cSpell.language": "en,pt",
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.suggestSelection": "first",
"explorer.confirmDelete": false,
"gitlens.codeLens.recentChange.enabled": false,
// "terminal.integrated.automationProfile.windows": "Git Bash",
"terminal.integrated.showExitAlert": false,
"[prisma]": {
"editor.formatOnSave": true
},
"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"
},
"cSpell.enableFiletypes": [
"!asciidoc",
"!c",
"!cpp",
"!csharp",
"!go",
"!handlebars",
"!haskell",
"!jade",
"!java",
"!latex",
"!php",
"!pug",
"!python",
"!restructuredtext",
"!rust",
"!scala",
"!scss"
],
"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,
"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"
],
"editor.fontFamily": "JetBrains Mono",
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font",
"terminal.integrated.gpuAcceleration": "off",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"explorer.compactFolders": false,
"breadcrumbs.enabled": false,
"editor.minimap.enabled": false,
"eslint.validate": [
"javascript",
"javascriptreact",
"graphql"
],
"editor.codeActionsOnSave": {
"eslint.autoFixOnSave": "explicit",
"source.fixAll.eslint": "explicit"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.exclude": {
"**\/CVS": true,
"**\/.DS_Store": true,
"**\/.hg": true,
"**\/.svn": true,
"**\/.git": true,
".vscode": true
// "node_modules": true
},
"material-icon-theme.folders.associations": {
"http": "container"
},
"workbench.statusBar.visible": true,
"liveServer.settings.CustomBrowser": "chrome",
"liveServer.settings.host": "localhost",
"liveServer.settings.port": 8080,
"terminal.integrated.env.windows": {},
"workbench.iconTheme": "symbols",
"workbench.colorTheme": "Vesper ++",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment