Skip to content

Instantly share code, notes, and snippets.

@gabrielvsc
Last active January 11, 2024 21:21
Show Gist options
  • Save gabrielvsc/efa5a06695f919b1fe592a0a0de4672a to your computer and use it in GitHub Desktop.
Save gabrielvsc/efa5a06695f919b1fe592a0a0de4672a to your computer and use it in GitHub Desktop.
VSCode Settings (Updated)
{
"discord.detailsIdling": "☕ Time to Coffee...",
"discord.detailsEditing": "📄 File: {file_name} - {file_size}",
"discord.detailsDebugging": "🧪 Debugging {file_name}",
"discord.lowerDetailsDebugging": "📌 In: {git_branch}",
"discord.lowerDetailsEditing": "📁 Project: {workspace}",
"discord.lowerDetailsNoWorkspaceFound": "{file_size}",
"editor.fontSize": 14,
"editor.tabSize": 2,
"editor.lineHeight": 1.8,
"editor.fontLigatures": true,
"editor.fontFamily": "JetBrainsMono Nerd Font",
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.tsserver.log": "off",
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.suggest.autoImports": true,
"editor.rulers": [80, 120],
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"editor.suggestSelection": "first",
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.accessibilitySupport": "off",
"editor.minimap.enabled": false,
"editor.semanticHighlighting.enabled": false,
"editor.language.colorizedBracketPairs": [
["[", "]"],
["(", ")"],
["{", "}"],
["<", "</"],
["<", "/>"]
],
"extensions.ignoreRecommendations": true,
"files.associations": {
".sequelizerc": "javascript",
".stylelintrc": "json",
"*.tsx": "typescriptreact",
".env.*": "dotenv",
".prettierrc": "json",
"*.css": "css"
},
"explorer.confirmDelete": false,
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"breadcrumbs.enabled": false,
"security.workspace.trust.untrustedFiles": "newWindow",
"files.exclude": {
"**\/CVS": true,
"**\/.DS_Store": true,
"**\/.hg": true,
"**\/.svn": true,
"**\/.git": true
},
"files.autoSave": "afterDelay",
"update.mode": "start",
"material-icon-theme.languages.associations": {
"dotenv": "tune"
},
"material-icon-theme.files.associations": {
"tsconfig.json": "tune",
"*.webpack.js": "webpack",
"*.proto": "3d",
"ormconfig.json": "database"
},
"material-icon-theme.activeIconPack": "nest",
"material-icon-theme.folders.associations": {
"adapters": "contract",
"grpc": "pipe",
"kube": "kubernetes",
"main": "lib",
"websockets": "pipe",
"implementations": "core",
"protos": "pipe",
"entities": "class",
"kafka": "pipe",
"use-cases": "functions",
"migrations": "tools",
"schemas": "class",
"useCases": "functions",
"eslint-config": "tools",
"typeorm": "database",
"_shared": "shared",
"mappers": "meta",
"fakes": "mock",
"modules": "components",
"subscribers": "messages",
"domain": "class",
"protocols": "contract",
"infra": "app",
"view-models": "views",
"presentation": "template",
"dtos": "typescript",
"http": "container",
"providers": "include",
"factories": "class",
"repositories": "mappings"
},
"workbench.startupEditor": "newUntitledFile",
"workbench.statusBar.visible": false,
"workbench.activityBar.location": "hidden",
"workbench.tree.indent": 15,
"workbench.tree.renderIndentGuides": "always",
"workbench.colorCustomizations":{
"tree.indentGuidesStroke": "#90a4ae",
},
"workbench.editor.labelFormat": "short",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Min Dark",
"git.enableSmartCommit": true,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.enabled": true,
"[prisma]": {
"editor.formatOnSave": true
},
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font",
"terminal.integrated.gpuAcceleration": "off",
"terminal.integrated.showExitAlert": false,
"tabnine.experimentalAutoImports": true,
"terminal.integrated.env.windows": {},
"workbench.sideBar.location": "right",
"workbench.editor.empty.hint": "hidden",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.addMissingImports": "explicit"
},
"eslint.validate": [
"javascript",
"javascriptreact",
"graphql"
],
"window.commandCenter": true,
"git.openRepositoryInParentFolders": "always",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"update.showReleaseNotes": false,
"security.promptForLocalFileProtocolHandling": false,
"editor.hideCursorInOverviewRuler": true,
"window.titleBarStyle": "custom",
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"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,
"apc.electron": {
"titleBarStyle": "hiddenInset"
},
"apc.listRow": {
"height": 24
},
"apc.stylesheet": {
".title-label > h2": "display: none",
".editor-actions": "display: none",
},
"workbench.editor.editorActionsLocation": "hidden"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment