From b3dd6ccd8103f834de7f11eca72c95d905738cbf Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Wed, 19 Feb 2025 09:45:30 -0500 Subject: [PATCH] zellij: disable auto-start maybe relevant in future https://github.com/nix-community/home-manager/pull/6037 --- modules/home/all/zellij.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/home/all/zellij.nix b/modules/home/all/zellij.nix index 7ebd810..264b335 100644 --- a/modules/home/all/zellij.nix +++ b/modules/home/all/zellij.nix @@ -3,6 +3,13 @@ { programs.zellij = { enable = true; + + # Disable the auto-start non-sense + # (fucks up terminal on vscode/zed) + # + # cf. https://zellij.dev/documentation/integration#autostart-on-shell-creation + enableZshIntegration = false; + settings = { theme = if pkgs.system == "aarch64-darwin" then "dracula" else "gruvbox-light"; # NOTE: There's no way to set theme by name.