-
-
Save diegorondao/858c143c77ec8ecc3f29f95c3f324677 to your computer and use it in GitHub Desktop.
| { | |
| "breadcrumbs.enabled": false, | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "terminal.integrated.fontSize": 14, | |
| "terminal.integrated.fontFamily": "FiraCode Nerd Font", | |
| "terminal.integrated.lineHeight": 1.2, | |
| "terminal.integrated.defaultProfile.linux": "zsh", | |
| "terminal.integrated.tabs.enabled": false, | |
| "terminal.integrated.showExitAlert": false, | |
| "terminal.integrated.gpuAcceleration": "off", | |
| "terminal.integrated.fontWeightBold": "600", | |
| "terminal.integrated.minimumContrastRatio": 1, | |
| "editor.fontFamily": "JetBrains Mono", | |
| "editor.letterSpacing": 0.4, | |
| "editor.smoothScrolling": true, | |
| "editor.fontSize": 15, | |
| "editor.fontLigatures": true, | |
| "editor.tabCompletion": "on", | |
| "editor.fontWeight": "500", | |
| "editor.lineHeight": 1.8, | |
| "editor.bracketPairColorization.enabled": true, | |
| "editor.guides.bracketPairs":"active", | |
| "editor.accessibilitySupport": "off", | |
| "editor.hideCursorInOverviewRuler": true, | |
| "editor.minimap.enabled": false, | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": [ | |
| "comment", | |
| "comment.block", | |
| "comment.block.documentation", | |
| "comment.line", | |
| "constant", | |
| "constant.character", | |
| "constant.character.escape", | |
| "constant.numeric", | |
| "constant.numeric.integer", | |
| "constant.numeric.float", | |
| "constant.numeric.hex", | |
| "constant.numeric.octal", | |
| "constant.other", | |
| "constant.regexp", | |
| "constant.rgb-value", | |
| "emphasis", | |
| "entity", | |
| "entity.name", | |
| "entity.name.class", | |
| "entity.name.function", | |
| "entity.name.method", | |
| "entity.name.section", | |
| "entity.name.selector", | |
| "entity.name.tag", | |
| "entity.name.type", | |
| "entity.other", | |
| "entity.other.attribute-name", | |
| "entity.other.inherited-class", | |
| "invalid", | |
| "invalid.deprecated", | |
| "invalid.illegal", | |
| "keyword", | |
| "keyword.control", | |
| "keyword.operator", | |
| "keyword.operator.new", | |
| "keyword.operator.assignment", | |
| "keyword.operator.arithmetic", | |
| "keyword.operator.logical", | |
| "keyword.other", | |
| "markup", | |
| "markup.bold", | |
| "markup.changed", | |
| "markup.deleted", | |
| "markup.heading", | |
| "markup.inline.raw", | |
| "markup.inserted", | |
| "markup.italic", | |
| "markup.list", | |
| "markup.list.numbered", | |
| "markup.list.unnumbered", | |
| "markup.other", | |
| "markup.quote", | |
| "markup.raw", | |
| "markup.underline", | |
| "markup.underline.link", | |
| "meta", | |
| "meta.block", | |
| "meta.cast", | |
| "meta.class", | |
| "meta.function", | |
| "meta.function-call", | |
| "meta.preprocessor", | |
| "meta.return-type", | |
| "meta.selector", | |
| "meta.tag", | |
| "meta.type.annotation", | |
| "meta.type", | |
| "punctuation.definition.string.begin", | |
| "punctuation.definition.string.end", | |
| "punctuation.separator", | |
| "punctuation.separator.continuation", | |
| "punctuation.terminator", | |
| "storage", | |
| "storage.modifier", | |
| "storage.type", | |
| "string", | |
| "string.interpolated", | |
| "string.other", | |
| "string.quoted", | |
| "string.quoted.double", | |
| "string.quoted.other", | |
| "string.quoted.single", | |
| "string.quoted.triple", | |
| "string.regexp", | |
| "string.unquoted", | |
| "strong", | |
| "support", | |
| "support.class", | |
| "support.constant", | |
| "support.function", | |
| "support.other", | |
| "support.type", | |
| "support.type.property-name", | |
| "support.variable", | |
| "variable", | |
| "variable.language", | |
| "variable.name", | |
| "variable.other", | |
| "variable.other.readwrite", | |
| "variable.parameter" | |
| ], | |
| "settings": { | |
| "fontStyle": "" | |
| } | |
| } | |
| ] | |
| }, | |
| "editor.rulers": [120], | |
| "editor.acceptSuggestionOnCommitCharacter": false, | |
| "editor.parameterHints.enabled": false, | |
| "editor.renderLineHighlight": "gutter", | |
| "editor.suggestSelection": "first", | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": "explicit" | |
| }, | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact" | |
| }, | |
| "emmet.syntaxProfiles": { | |
| "javascript": "jsx" | |
| }, | |
| "explorer.confirmDelete": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "explorer.compactFolders": false, | |
| "extensions.ignoreRecommendations": true, | |
| "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.sortOrder": "foldersNestsFiles", | |
| "files.insertFinalNewline": true, | |
| "files.autoSave": "afterDelay", | |
| "files.associations": { | |
| ".env.*": "dotenv", | |
| ".prettierrc": "json", | |
| "*.css": "css" | |
| }, | |
| "files.exclude": { | |
| "**\/CVS": true, | |
| "**\/.DS_Store": true, | |
| "**\/.hg": true, | |
| "**\/.svn": true, | |
| "**\/.git": true, | |
| ".vscode": true | |
| }, | |
| "git.openRepositoryInParentFolders": "always", | |
| "git.enableSmartCommit": true, | |
| "gitlens.codeLens.recentChange.enabled": false, | |
| "javascript.suggest.autoImports": true, | |
| "javascript.updateImportsOnFileMove.enabled": "always", | |
| "[javascript]": { | |
| "editor.defaultFormatter": "vscode.typescript-language-features" | |
| }, | |
| "indentRainbow.includedLanguages": ["typescript", "typescriptreact", "js", "*.jsx", "ts", "*.tsx", "plaintext"], | |
| "indentRainbow.indicatorStyle": "light", | |
| "indentRainbow.lightIndicatorStyleLineWidth": 2, | |
| "indentRainbow.colorOnWhiteSpaceOnly": true, | |
| "indentRainbow.colors": [ | |
| "rgba(255,255,64,0.3)", | |
| "rgba(127,255,127,0.3)", | |
| "rgba(255,127,255,0.3)", | |
| "rgba(79,236,236,0.3)" | |
| ], | |
| "indentRainbow.errorColor": "rgba(128,32,32,0.6)", | |
| "indentRainbow.tabmixColor": "rgba(128,32,96,0.6)", | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "vscode.json-language-features" | |
| }, | |
| "[json]": { | |
| "editor.defaultFormatter": "vscode.json-language-features" | |
| }, | |
| "[Log]": { | |
| "editor.fontSize": 14 | |
| }, | |
| "update.showReleaseNotes": false, | |
| "update.mode": "start", | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "security.promptForLocalFileProtocolHandling": false, | |
| "symbols.hidesExplorerArrows": false, | |
| "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" | |
| }, | |
| "typescript.updateImportsOnFileMove.enabled": "always", | |
| "typescript.tsserver.log": "off", | |
| "typescript.suggest.autoImports": true, | |
| "window.zoomLevel": 0.6, | |
| "window.commandCenter": true, | |
| "window.titleBarStyle": "native", | |
| "workbench.iconTheme": "symbols", | |
| "workbench.colorTheme": "Material Theme Darker High Contrast", | |
| "workbench.productIconTheme": "fluent-icons", | |
| "workbench.tree.indent": 15, | |
| "workbench.statusBar.visible": false, | |
| "workbench.editor.labelFormat": "short", | |
| "workbench.editor.empty.hint": "hidden", | |
| } |
24-04-01
{
"diffEditor.ignoreTrimWhitespace": false,
"terminal.integrated.fontSize": 14,
"terminal.integrated.lineHeight": 1.4,
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font",
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.showExitAlert": false,
"terminal.integrated.gpuAcceleration": "off",
"terminal.integrated.fontWeightBold": "600",
"terminal.integrated.minimumContrastRatio": 1,
"editor.fontFamily": "FiraCode Nerd Font",
"editor.letterSpacing": 0.4,
"editor.smoothScrolling": true,
"editor.fontSize": 15,
"editor.fontLigatures": "'calt', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'zero', 'onum'",
"editor.tabCompletion": "on",
"editor.fontWeight": "400",
"editor.lineHeight": 1.5,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs":"active",
"editor.accessibilitySupport": "off",
"editor.hideCursorInOverviewRuler": true,
"editor.minimap.enabled": false,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"comment.block",
"comment.block.documentation",
"comment.line",
"constant",
"constant.character",
"constant.character.escape",
"constant.numeric",
"constant.numeric.integer",
"constant.numeric.float",
"constant.numeric.hex",
"constant.numeric.octal",
"constant.other",
"constant.regexp",
"constant.rgb-value",
"emphasis",
"entity",
"entity.name",
"entity.name.class",
"entity.name.function",
"entity.name.method",
"entity.name.section",
"entity.name.selector",
"entity.name.tag",
"entity.name.type",
"entity.other",
"entity.other.attribute-name",
"entity.other.inherited-class",
"invalid",
"invalid.deprecated",
"invalid.illegal",
"keyword",
"keyword.control",
"keyword.operator",
"keyword.operator.new",
"keyword.operator.assignment",
"keyword.operator.arithmetic",
"keyword.operator.logical",
"keyword.other",
"markup",
"markup.bold",
"markup.changed",
"markup.deleted",
"markup.heading",
"markup.inline.raw",
"markup.inserted",
"markup.italic",
"markup.list",
"markup.list.numbered",
"markup.list.unnumbered",
"markup.other",
"markup.quote",
"markup.raw",
"markup.underline",
"markup.underline.link",
"meta",
"meta.block",
"meta.cast",
"meta.class",
"meta.function",
"meta.function-call",
"meta.preprocessor",
"meta.return-type",
"meta.selector",
"meta.tag",
"meta.type.annotation",
"meta.type",
"punctuation.definition.string.begin",
"punctuation.definition.string.end",
"punctuation.separator",
"punctuation.separator.continuation",
"punctuation.terminator",
"storage",
"storage.modifier",
"storage.type",
"string",
"string.interpolated",
"string.other",
"string.quoted",
"string.quoted.double",
"string.quoted.other",
"string.quoted.single",
"string.quoted.triple",
"string.regexp",
"string.unquoted",
"strong",
"support",
"support.class",
"support.constant",
"support.function",
"support.other",
"support.type",
"support.type.property-name",
"support.variable",
"variable",
"variable.language",
"variable.name",
"variable.other",
"variable.other.readwrite",
"variable.parameter"
],
"settings": {
"fontStyle": ""
}
}
]
},
"editor.rulers": [80],
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"editor.suggestSelection": "first",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.compactFolders": false,
"extensions.ignoreRecommendations": true,
"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.sortOrder": "foldersNestsFiles",
"files.insertFinalNewline": true,
"files.autoSave": "afterDelay",
"files.associations": {
".env.": "dotenv",
".prettierrc": "json",
".css": "css"
},
"files.exclude": {
"/CVS": true,
"/.DS_Store": true,
"/.hg": true,
"/.svn": true,
"**/.git": true,
".vscode": true
},
"git.openRepositoryInParentFolders": "always",
"git.enableSmartCommit": true,
"gitlens.codeLens.recentChange.enabled": false,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"indentRainbow.includedLanguages": ["typescript", "typescriptreact", "js", ".jsx", "ts", ".tsx", "plaintext"],
"indentRainbow.indicatorStyle": "light",
"indentRainbow.lightIndicatorStyleLineWidth": 2,
"indentRainbow.colorOnWhiteSpaceOnly": true,
"indentRainbow.colors": [
"rgba(255,255,64,0.3)",
"rgba(127,255,127,0.3)",
"rgba(255,127,255,0.3)",
"rgba(79,236,236,0.3)"
],
"indentRainbow.errorColor": "rgba(128,32,32,0.6)",
"indentRainbow.tabmixColor": "rgba(128,32,96,0.6)",
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[Log]": {
"editor.fontSize": 14
},
"update.showReleaseNotes": false,
"update.mode": "start",
"security.workspace.trust.untrustedFiles": "open",
"security.promptForLocalFileProtocolHandling": false,
"symbols.hidesExplorerArrows": false,
"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"
},
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.tsserver.log": "off",
"typescript.suggest.autoImports": true,
"window.commandCenter": false,
"window.titleBarStyle": "native",
"workbench.iconTheme": "symbols",
"workbench.colorTheme": "Min Dark",
"workbench.tree.indent": 15,
"workbench.editor.labelFormat": "short",
"workbench.editor.empty.hint": "hidden",
"window.zoomLevel": 0.7,
"window.confirmSaveUntitledWorkspace": false,
"window.customTitleBarVisibility": "auto",
"editor.showFoldingControls": "always",
"editor.folding": true,
"editor.foldingStrategy": "indentation",
"tabnine.experimentalAutoImports": true,
"terminal.integrated.tabs.enabled": false,
"[yaml]": {
"editor.autoIndent": "advanced",
"editor.defaultFormatter": "redhat.vscode-yaml"
},
"[dockercompose]": {
"editor.autoIndent": "advanced"
},
"workbench.statusBar.visible": false,
"workbench.layoutControl.enabled": false,
"apc.electron": {
"titleBarStyle": "hiddenInset",
"trafficLightPosition": {
"x": 11,
"y": 10
},
"frame": false
},
"apc.header": {
"height": 36
},
"apc.listRow": {
"height": 24
},
"apc.font.family": "Inter",
"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;"
},
"editor.semanticHighlighting.enabled": false,
"breadcrumbs.enabled": false,
"workbench.activityBar.location": "hidden",
}
UPDATE 2024 👍