aboutsummaryrefslogtreecommitdiff
path: root/modules/home/editors/zed/default.nix
diff options
context:
space:
mode:
authorLeander Scherer <80996591+schererleander@users.noreply.github.com>2026-01-16 16:11:40 +0100
committerGitHub <noreply@github.com>2026-01-16 16:11:40 +0100
commita8cd425e534cd4f1f18dee79f75186a6a7824467 (patch)
tree68e2cde7e786c3af7b9c1bbc71e08bb4164d2ed8 /modules/home/editors/zed/default.nix
parent7ff7608a4589be01a3094a2f1a2a9268f70ab0ac (diff)
fea(zed): configure theme and minimal ui layout
Diffstat (limited to 'modules/home/editors/zed/default.nix')
-rw-r--r--modules/home/editors/zed/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/home/editors/zed/default.nix b/modules/home/editors/zed/default.nix
index 431560c..58835fb 100644
--- a/modules/home/editors/zed/default.nix
+++ b/modules/home/editors/zed/default.nix
@@ -85,6 +85,31 @@ in
telemetry = {
metrics = false;
};
+ title_bar = {
+ show_onboarding_banner = false;
+ show_project_items = false;
+ show_branch_name = false;
+ show_user_menu = false;
+ };
+ tab_bar.show = false;
+ toolbar.quick_actions = false;
+ status_bar."experimental.show" = false;
+ project_panel = {
+ dock = "right";
+ default_width = 400;
+ hide_root = true;
+ auto_fold_dirs = false;
+ starts_open = false;
+ git_status = false;
+ sticky_scroll = false;
+ scrollbar.show = "never";
+ indent_guides.show = "never";
+ };
+ outline_panel = {
+ default_width = 300;
+ indent_guides.show = "never";
+ };
+ file_finder.modal_max_width = "large";
};
};
};