Update zed_settings.jsonc

This commit is contained in:
Olivia Brooks
2025-04-26 13:03:36 -04:00
parent c45654d2ec
commit cef296f8bc

View File

@@ -19,54 +19,53 @@
"telemetry": { "telemetry": {
"diagnostics": true, "diagnostics": true,
"metrics": false "metrics": false,
}, },
"icon_theme": "Colored Zed Icons Theme Dark", "icon_theme": "Colored Zed Icons Theme Dark",
"theme": { "theme": {
"mode": "system", "mode": "system",
"light": "One Light", "light": "One Light",
"dark": "Indigo | Clear" "dark": "Indigo | Clear",
}, },
"restore_on_startup": "last_workspace", "restore_on_startup": "last_workspace",
"soft_wrap": "preferred_line_length", "soft_wrap": "preferred_line_length",
"outline_panel": {
"dock": "right",
},
// Remove AI Crap // Remove AI Crap
"features": { "features": {
"edit_prediction_provider": "none", "edit_prediction_provider": "none",
"copilot": false "copilot": false,
}, },
"assistant": { "assistant": {
"version": "1", "version": "1",
"enabled": false "enabled": false,
}, },
// Remove collab stuff // Remove collab stuff
"collaboration_panel": { "collaboration_panel": {
"button": false "button": false,
}, },
"chat_panel": { "chat_panel": {
"button": "never" "button": "never",
},
"outline_panel": {
"dock": "right"
}, },
// Language Overrides // Language Overrides
"languages": { "languages": {
"Python": { "Python": {
"show_wrap_guides": true, "show_wrap_guides": true,
"preferred_line_length": 80 "preferred_line_length": 80,
}, },
"Rust": { "Rust": {
"show_wrap_guides": true, "show_wrap_guides": true,
"preferred_line_length": 100 "preferred_line_length": 100,
}, },
"JSON": { "JSON": {
"tab_size": 4 "tab_size": 4,
}, },
"JSONC": { "JSONC": {
"tab_size": 4 "tab_size": 4,
} },
} },
} }