Skip to content

Instantly share code, notes, and snippets.

@d-kja
Last active February 2, 2024 12:52
VS Code config
{
"breadcrumbs.enabled": false,
"window.commandCenter": false,
"window.menuBarVisibility": "compact",
"window.zoomLevel": 1,
"update.mode": "start",
"update.showReleaseNotes": false,
"workbench.layoutControl.enabled": false,
"workbench.colorTheme": "Nord",
"workbench.iconTheme": "symbols",
"workbench.editor.labelFormat": "short",
"workbench.statusBar.visible": true,
"workbench.productIconTheme": "fluent-icons",
"workbench.editor.empty.hint": "hidden",
"workbench.activityBar.location": "top",
"workbench.startupEditor": "none",
"workbench.sideBar.location": "right",
"editor.fontFamily": "JetBrainsMono Nerd Font",
"editor.renderLineHighlight": "gutter",
"editor.tabSize": 2,
"editor.fontSize": 14,
"editor.lineHeight": 1.8,
"editor.rulers": [
80,
120
],
"editor.fontLigatures": true,
"editor.semanticHighlighting.enabled": false,
"editor.minimap.enabled": false,
"editor.scrollbar.vertical": "auto",
"editor.scrollbar.horizontal": "hidden",
"editor.parameterHints.enabled": false,
"editor.suggestSelection": "first",
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.accessibilitySupport": "off",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.hideCursorInOverviewRuler": true,
"editor.formatOnSave": true,
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"explorer.sortOrder": "foldersNestsFiles",
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"package.*": "pnpm-lock*, bun*, nest*, biome*, .eslint*, prettier*, tsconfig*, vite*",
"tailwind.config.*": "tailwind.config*, postcss.config*",
".env.local": ".env*",
".env": ".env*",
"Cargo.toml": "Cargo.lock",
},
"files.exclude": {
"**\/CVS": true,
"**\/.DS_Store": true,
"**\/.hg": true,
"**\/.svn": true,
"**\/.git": true,
".vscode": true
// "node_modules": true
},
"security.workspace.trust.untrustedFiles": "newWindow",
"security.promptForLocalFileProtocolHandling": false,
// ## TERMINAL ##
"terminal.integrated.showExitAlert": false,
"terminal.integrated.fontSize": 12,
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font",
"terminal.integrated.gpuAcceleration": "auto",
"terminal.integrated.defaultProfile.osx": "fish",
// ## GIT ##
"git.enableSmartCommit": true,
"git.openRepositoryInParentFolders": "always",
"git.confirmSync": false,
// ## EXTENSIONS ##
"extensions.ignoreRecommendations": true,
// # APC EXTENSION
"apc.activityBar": {
"hideSettings": true,
"size": 48,
"itemMargin": 12,
"itemSize": 24
},
"apc.electron": {
"titleBarStyle": "hiddenInset",
"frame": false
},
"apc.header": {
"height": 36
},
"apc.listRow": {
"height": 24
},
"apc.stylesheet": {
".title-label > h2": "display: none",
".editor-actions": "display: none",
".nosidebar .inline-tabs-placeholder": "width: 75px",
".pane-header": "padding: 0 8px",
".pane-body": "padding: 8px",
".split-view-view:first-child .pane-header": "display: none !important;",
".monaco-list-row": "border-radius: 4px;",
".monaco-workbench .monaco-list:not(.element-focused):focus:before": "display: none;",
".sidebar .actions-container": "display: flex; justify-content: space-between; flex-direction: row-reverse;",
".composite-bar-container": "flex: 0 !important; flex-direction: row-reverse;",
".sidebar .composite:not(.viewlet)": "display: flex; flex: 1; flex-direction: row-reverse;",
"svg": "stroke-width: 1;"
},
// # SYMBOLS EXTENSION
"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"
},
"symbols.hidesExplorerArrows": false,
// # CSPELL EXTENSION
"cSpell.language": "en,pt",
"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"
],
// # GITLENS EXTENSION
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
// # CONSOLE NINJA EXTENSION
"console-ninja.featureSet": "Community",
// # PRISMA EXTENSION
"[prisma]": {
"editor.formatOnSave": true
},
// # ESLINT EXTENSION
"eslint.validate": [
"javascript",
"javascriptreact",
"graphql"
],
// ## LANGUAGES ##
"files.associations": {
".env.*": "dotenv",
".prettierrc": "json",
"*.css": "css"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.tsserver.log": "off",
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.suggest.autoImports": true,
"tailwindCSS.experimental.classRegex": [
[
"tv\\(([^)]*)\\)",
"[\"'`]([^\"'`]*).*?[\"'`]"
]
],
"svelte.enable-ts-plugin": true,
// ## OTHERS ##
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[jsonc]": {
"editor.formatOnSave": false
},
"[json]": {
"editor.formatOnSave": false
},
"[typescriptreact]": {
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment