Skip to content

Instantly share code, notes, and snippets.

@mkvlrn
Created February 6, 2026 15:13
Show Gist options
  • Select an option

  • Save mkvlrn/32fc20d7fa1a67755682649bec8b4388 to your computer and use it in GitHub Desktop.

Select an option

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)
{
"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