|
|
|
|
|
by yencabulator
776 days ago
|
|
$ 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,
},
}
|
|