From cef296f8bc91bbf7f19f1f0560fda14c644d419e Mon Sep 17 00:00:00 2001 From: Olivia Brooks <109807080+Cutieguwu@users.noreply.github.com> Date: Sat, 26 Apr 2025 13:03:36 -0400 Subject: [PATCH] Update zed_settings.jsonc --- zed_settings.jsonc | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/zed_settings.jsonc b/zed_settings.jsonc index c32e6d0..a7ae88f 100644 --- a/zed_settings.jsonc +++ b/zed_settings.jsonc @@ -19,54 +19,53 @@ "telemetry": { "diagnostics": true, - "metrics": false + "metrics": false, }, "icon_theme": "Colored Zed Icons Theme Dark", "theme": { "mode": "system", "light": "One Light", - "dark": "Indigo | Clear" + "dark": "Indigo | Clear", }, "restore_on_startup": "last_workspace", "soft_wrap": "preferred_line_length", + "outline_panel": { + "dock": "right", + }, // Remove AI Crap "features": { "edit_prediction_provider": "none", - "copilot": false + "copilot": false, }, "assistant": { "version": "1", - "enabled": false + "enabled": false, }, // Remove collab stuff "collaboration_panel": { - "button": false + "button": false, }, "chat_panel": { - "button": "never" - }, - - "outline_panel": { - "dock": "right" + "button": "never", }, // Language Overrides "languages": { "Python": { "show_wrap_guides": true, - "preferred_line_length": 80 + "preferred_line_length": 80, }, "Rust": { "show_wrap_guides": true, - "preferred_line_length": 100 + "preferred_line_length": 100, }, "JSON": { - "tab_size": 4 + "tab_size": 4, }, "JSONC": { - "tab_size": 4 - } - } + "tab_size": 4, + }, + }, }