Hacker News new | ask | show | jobs
by skohan 768 days ago
I use Zed as a daily driver, and I haven't once used the collaborative features
1 comments

    $ grep -A 999 Disable .config/zed/settings.json
      // Disable all genAI crap.
      "features": {
        "copilot": false,
      },
      "show_copilot_suggestions": false,
      "assistant": {
        "version": 1,
        "enabled": false,
        "button": false,
      },

      // Disable all "social coding" features.
      "calls": {
        "share_on_join": false,
      },
      "collaboration_panel": {
        "button": false,
      },
      "chat_panel": {
        "button": false,
      },
      "notification_panel": {
        "button": false,
      },
    }