Created
February 6, 2026 15:13
-
-
Save mkvlrn/32fc20d7fa1a67755682649bec8b4388 to your computer and use it in GitHub Desktop.
vscode settings to remove/hide AI nonsense (and some telemetry too, I think)
This file contains hidden or 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
| { | |
| "chat.agent.enabled": false, | |
| "chat.agent.maxRequests": 0, | |
| "chat.detectParticipant.enabled": false, | |
| "chat.disableAIFeatures": true, | |
| "chat.edits2.enabled": false, | |
| "chat.extensionTools.enabled": false, | |
| "chat.implicitContext.enabled": { | |
| "panel": "never" | |
| }, | |
| "chat.implicitContext.suggestedContext": false, | |
| "chat.instructionsFilesLocations": { | |
| ".github/instructions": false | |
| }, | |
| "chat.mcp.access": "none", | |
| "chat.promptFilesLocations": { | |
| ".github/prompts": false | |
| }, | |
| "chat.sendElementsToChat.attachCSS": false, | |
| "chat.sendElementsToChat.attachImages": false, | |
| "chat.sendElementsToChat.enabled": false, | |
| "chat.tools.todos.showWidget": false, | |
| "chat.useAgentsMdFile": false, | |
| "inlineChat.holdToSpeech": false, | |
| "notebook.experimental.generate": false, | |
| "remote.SSH.experimental.chat": false, | |
| "telemetry.feedback.enabled": false, | |
| "terminal.integrated.initialHint": false, | |
| "workbench.settings.showAISearchToggle": false | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment