Hacker News new | ask | show | jobs
by exaldb 876 days ago
Is there a way to explicitly disable Copilot/AI/collaboration features? I won't be able to use this at work if there's a risk that it'd upload my code. It looks like a very fast editor (with Vim keybindings!) and I'd love to use it even without AI :)
2 comments

From the docs on zed.dev:

  "copilot": {  
    "disabled_globs": [  
      ".env"  
    ]  
  }
I imagine * would work there too.

I don't see a way to disable all the collaboration features, but it does look pretty difficult to do it by mistake. You have to add collaborators explicitly.

  "features": {
    "copilot": false
  }