Skip to content

Instantly share code, notes, and snippets.

@rpavlik
Last active July 10, 2026 04:17
Show Gist options
  • Select an option

  • Save rpavlik/95d6c40d8407805e2c20bdf6d9efa44e to your computer and use it in GitHub Desktop.

Select an option

Save rpavlik/95d6c40d8407805e2c20bdf6d9efa44e to your computer and use it in GitHub Desktop.
Go away copilot and other slop machines (in vscode)
{
// go away copilot and other ai slop machines
"accessibility.verboseChatProgressUpdates": false,
"accessibility.verbosity.inlineChat": false,
"accessibility.verbosity.panelChat": false,
"accessibility.verbosity.terminalChatOutput": false,
"ansible.lightspeed.suggestions.waitWindow": 360000,
"chat.agent.codeBlockProgress": false,
"chat.agent.enabled": false,
"chat.agent.maxRequests": 0,
"chat.agent.thinking.generateTitles": false,
"chat.agent.thinking.terminalTools": false,
"chat.agentsControl.enabled": false,
"chat.agentSkillsLocations": {
".agents/skills": false,
".claude/skills": false,
".github/skills": false,
"~/.agents/skills": false,
"~/.claude/skills": false,
"~/.copilot/skills": false
},
"chat.allowAnonymousAccess": false,
"chat.checkpoints.enabled": false,
"chat.commandCenter.enabled": false,
"chat.customAgentInSubagent.enabled": false,
"chat.detectParticipant.enabled": false,
"chat.disableAIFeatures": true,
"chat.editMode.hidden": true,
"chat.editRequests": "none",
"chat.extensionTools.enabled": false,
"chat.extensionUnification.enabled": false,
"chat.focusWindowOnConfirmation": false,
"chat.implicitContext.enabled": {
"panel": "never"
},
"chat.implicitContext.suggestedContext": false,
"chat.includeApplyingInstructions": false,
"chat.instructionsFilesLocations": {
".github/instructions": false
},
"chat.mcp.access": "none",
"chat.mcp.apps.enabled": false,
"chat.mcp.autostart": "never",
"chat.mcp.discovery.enabled": {
"claude-desktop": false,
"cursor-global": false,
"cursor-workspace": false,
"windsurf": false
},
"chat.mcp.gallery.enabled": false,
"chat.promptFiles": false,
"chat.promptFilesLocations": {
".github/prompts": false
},
"chat.sendElementsToChat.attachCSS": false,
"chat.sendElementsToChat.attachImages": false,
"chat.sendElementsToChat.enabled": false,
"chat.setupFromDialog": false,
"chat.showAgentSessionsViewDescription": false,
"chat.tools.edits.autoApprove": {
"**/*": false
},
"chat.tools.terminal.autoApproveWorkspaceNpmScripts": false,
"chat.tools.terminal.enableAutoApprove": false,
"chat.tools.todos.showWidget": false,
"chat.unifiedAgentsBar.enabled": false,
"chat.useAgentSkills": false,
"chat.useAgentsMdFile": false,
"chat.useFileStorage": false,
"chat.viewSessions.enabled": false,
"dataWrangler.experiments.copilot.enabled": false,
"editor.aiStats.enabled": false,
"github.copilot.editor.enableAutoCompletions": false,
"github.copilot.editor.enableCodeActions": false,
"github.copilot.enable": false,
"github.copilot.nextEditSuggestions.enabled": false,
"github.copilot.renameSuggestions.triggerAutomatically": false,
"githubPullRequests.codingAgent.autoCommitAndPush": false,
"githubPullRequests.codingAgent.codeLens": false,
"githubPullRequests.codingAgent.enabled": false,
"githubPullRequests.codingAgent.uiIntegration": false,
"githubPullRequests.experimental.chat": false,
"gitlab.duoChat.enabled": false,
"inlineChat.affordance": false,
"inlineChat.holdToSpeech": false,
"inlineChat.lineNaturalLanguageHint": false,
"mcp": {
"inputs": [],
"servers": {}
},
"notebook.experimental.generate": false,
"python.analysis.aiCodeActions": {
"convertFormatString": false,
"convertLambdaToNamedFunction": false,
"generateDocstring": false,
"generateSymbol": false,
"implementAbstractClasses": false
},
"python.experiments.enabled": false,
"redhat.telemetry.enabled": false,
"remote.SSH.experimental.chat": false,
"telemetry.feedback.enabled": false,
"terminal.integrated.initialHint": false,
"terminal.integrated.suggest.enabled": false,
"workbench.commandPalette.showAskInChat": false,
"workbench.editor.empty.hint": "hidden",
"workbench.settings.showAISearchToggle": false,
// gemini stuff comes bundled with some google extensions
"cloudcode.apigee.gemini.options": {
"enterpriseContext": {
"enabled": false,
"includeMetadata": true,
"includeSecurity": true,
"includeSchema": true
},
"enableRemoteMockServer": false,
"enablePublishToApiHubModal": false,
"enableNewActionsLayout": false
},
"geminicodeassist.enable": false,
"geminicodeassist.enableTelemetry": false,
"geminicodeassist.inlineSuggestions.enableAuto": false,
"geminicodeassist.localCodebaseAwareness": false,
"geminicodeassist.chat.automaticScrolling": false,
// end of slop machine settings
}
@nyanpasu64

Copy link
Copy Markdown

The VS Code JSON editor shows a few unrecognized keys and I don't know if the values you've chosen are ignored or treated as off:

  "chat.agentsControl.enabled": false,
Value is not accepted. Valid values: "hidden", "badge", "compact".(1)

  "github.copilot.enable": false,
Incorrect type. Expected "object".

  "inlineChat.affordance": false,
Value is not accepted. Valid values: "off", "editor".(1)

  "mcp": {
MCP servers should not be configured in user settings. Use the dedicated MCP configuration instead.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment