Skip to content

Instantly share code, notes, and snippets.

@eklop4ps
Last active December 4, 2025 10:04
Show Gist options
  • Select an option

  • Save eklop4ps/1c0423222d7b802b0040c9934c5465c1 to your computer and use it in GitHub Desktop.

Select an option

Save eklop4ps/1c0423222d7b802b0040c9934c5465c1 to your computer and use it in GitHub Desktop.
VS Code Setup

VS Code Setup

Version: 12/2025

Performance (safe)

"al.semanticFolding.enabled": false,
"al.showHomeAtStartup": "Never",
"breadcrumbs.enabled": false,
"editor.bracketPairColorization.enabled": false,
"editor.minimap.enabled": false,
"editor.smoothScrolling": false,
"gitlens.currentLine.enabled": false,
"gitlens.currentLine.scrollable": false,
"gitlens.home.preview.enabled": false,
"scm.showHistoryGraph": false,
"search.searchOnType": false, // Hit Enter before doing a global search (Ctrl + Shift + F)
"telemetry.telemetryLevel": "off",
"workbench.editor.enablePreview": false,

Performance (questionable)

"al.enableCodeAnalysis": false,
"al.inlayhints.functionReturnTypes.enabled": false,
"al.inlayhints.parameterNames.enabled": false,
"editor.codeLens": false,
"editor.inlayHints.enabled": "off",
"files.restoreUndoStack": false,
"git.showReferenceDetails": false,
"terminal.integrated.gpuAcceleration": "off",

Visual

"debug.console.fontFamily": "monospace",
"debug.console.fontSize": 13,
"editor.fontFamily": "'iA Writer Mono S'",
"editor.fontSize": 18,
"editor.tokenColorCustomizations": {"[*Dark*]": {"comments": "#aaa"}},
"terminal.integrated.fontFamily": "monospace",
"terminal.integrated.fontSize": 15,
"window.newWindowDimensions": "maximized",
"workbench.colorTheme": "GitHub Dark",
"workbench.editor.restoreViewState": false,
"workbench.startupEditor": "none",
"[json]": {"editor.defaultFormatter": "vscode.json-language-features"},
"[log][Log]": {"editor.fontFamily": "monospace","editor.fontSize": 12},

Various

"al.assemblyProbingPaths": ["./.netpackages","C:/Windows/assembly/"],
"al.enableExternalRulesets": true,
"cc-azdevops.container.configureAttachConfigInLaunchJson": false,
"cc-azdevops.container.configureSnapshotConfigInLaunchJson": false,
"cc-azdevops.debugMode": true,
"cc-azdevops.defaultContainerPassword": "test1991",
"cc-azdevops.previewMode": true,
"diffEditor.ignoreTrimWhitespace": true,
"diffEditor.renderSideBySide": true,
"explorer.confirmDelete": false,
"files.associations": {"*.code-workspace": "json"},
"files.autoSave": "afterDelay",
"files.watcherExclude": {"**/.git/objects/**": true,"**/.git/subtree-cache/**": true,"**/.hg/store/**": true},
"git.autofetch": true,
"git.confirmSync": false,
"git.pruneOnFetch": true,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.gitCommands.skipConfirmations": ["fetch:command","switch:command","push:command"],
"gitlens.views.scm.grouped.views": {"branches": false,"commits": false,"contributors": false,"launchpad": false,"remotes": false,"repositories": false,"searchAndCompare": false,"stashes": false,"tags": false,"worktrees": false},
"powershell.integratedConsole.showOnStartup": false,
"terminal.integrated.defaultProfile.windows": "PowerShell",
"todo-tree.general.showActivityBarBadge": true,
"todo-tree.highlights.enabled": false
"update.mode": "start",
"window.openFilesInNewWindow": "on",
"workbench.welcomePage.walkthroughs.openOnInstall": false,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment