From 3b13d9a2a367db84d48940460532c17a374bb488 Mon Sep 17 00:00:00 2001 From: schererleander Date: Thu, 5 Feb 2026 12:03:07 +0100 Subject: feat(modules): use dendritic pattern --- modules/home/editors/zed/default.nix | 52 ------------------------------------ 1 file changed, 52 deletions(-) delete mode 100644 modules/home/editors/zed/default.nix (limited to 'modules/home/editors/zed') diff --git a/modules/home/editors/zed/default.nix b/modules/home/editors/zed/default.nix deleted file mode 100644 index 95c3be0..0000000 --- a/modules/home/editors/zed/default.nix +++ /dev/null @@ -1,52 +0,0 @@ -{ - config, - lib, - ... -}: - -let - inherit (lib) mkEnableOption mkIf; - cfg = config.nx.editors.zed-editor; -in -{ - options.nx.editors.zed-editor = { - enable = mkEnableOption "zed editor"; - }; - - config = mkIf cfg.enable { - programs.zed-editor = { - enable = true; - extensions = [ "nix" ]; - userSettings = { - 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"; - }; - }; - }; -} -- cgit v1.3.1