Skip to main content
  1. Blog/

How to disable all AI stuff in Zed

·1 min
Zed Disable-Ai

I use Visual Studio Code as my primary editor, but I like Zed editor because it’s simple and fast. The only concern is the LLM bloat, which I’d like to disable to make it a perfect file editor.

To disable all AI stuff I use this configuration:

"assistant": {
  "enabled": false,
  "button": false,
  "version": "2"
},
"features": {
  "edit_prediction_provider": "none",
  "copilot": false
},
"chat_panel": {
  "button": "never"
}

I’m sure this configuration may become outdated, so I’ll try to maintain it as long as I use Zed editor.

Author
Leonid Boykov
I’m a professional Go developer with a passion for technology. My hobbies include game development, web design, and smart home automation.