Last active
September 19, 2024 16:20
-
-
Save hyperupcall/99e355405611be6c4e0a38b6e3e8aad0 to your computer and use it in GitHub Desktop.
VSCode config to disable popular extensions' annoyances (telemetry, notifications, welcome pages, etc.)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// I'm tired of extensions that automatically: | |
// - show welcome pages / walkthroughs | |
// - show release notes | |
// - send telemetry | |
// - recommend things | |
// | |
// This disables all of that stuff. | |
// If you have more config, leave a comment so I can add it!! | |
{ | |
"clangd.checkUpdates": false, | |
"code-runner.enableAppInsights": false, | |
"docker-explorer.enableTelemetry": false, | |
"extensions.ignoreRecommendations": true, | |
"gitlens.showWelcomeOnInstall": false, | |
"gitlens.showWhatsNewAfterUpgrades": false, | |
"java.help.firstView": "none", | |
"java.help.showReleaseNotes": false, | |
"julia.enableTelemetry": false, | |
"kite.showWelcomeNotificationOnStartup": false, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"Lua.telemetry.enable": false, | |
"material-icon-theme.showWelcomeMessage": false, | |
"pros.showWelcomeOnStartup": false, | |
"pros.useGoogleAnalytics": false, | |
"redhat.telemetry.enabled": false, | |
"rpcServer.showStartupMessage": false, | |
"shellcheck.disableVersionCheck": true, | |
"sonarlint.disableTelemetry": true, | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"telemetry.telemetryLevel": "off", | |
"terraform.telemetry.enabled": false, | |
"update.showReleaseNotes": false, | |
"vsicons.dontShowNewVersionMessage": true, | |
"workbench.welcomePage.walkthroughs.openOnInstall": false | |
} |
I see an opportunity for a(nother) plugin here :)
The main thing about vscodium is that not every extension is available to be installed on it. That's my main issue with that version of vscode
@georgikoemdzhiev It's possible to manually revert to Microsoft' marketplace and other features — these packages provides automatic patches:
I see an opportunity for a(nother) plugin here :)
This would make a fantastic addon!
And of course that addon should send telemetry and show a welcome page
And of course that addon should send telemetry and show a welcome page
Is this a problem for you? I mean I'm genuinely asking
@Microeinstein Thanks a lot for sharing these, you're a lifesaver!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Grouped config with extension names: