diff --git a/home-manager/common/software/cli/fish.nix b/home-manager/common/software/cli/fish.nix index d597c6f0..7c7cdc21 100644 --- a/home-manager/common/software/cli/fish.nix +++ b/home-manager/common/software/cli/fish.nix @@ -9,7 +9,7 @@ ssh-add > /dev/null &> /dev/null if set -q ZELLIJ else - zellij attach -c "MAIN"; exit + exec zellij attach -c "MAIN" && exit end ''; diff --git a/home-manager/common/software/cli/zellij.nix b/home-manager/common/software/cli/zellij.nix index 068b940f..b74b20ae 100644 --- a/home-manager/common/software/cli/zellij.nix +++ b/home-manager/common/software/cli/zellij.nix @@ -1,17 +1,17 @@ { config, ... }: { programs.zellij = { enable = true; - enableBashIntegration = true; - enableFishIntegration = true; + # enableBashIntegration = true; + # enableFishIntegration = true; settings = { mirror_session = true; simplified_ui = true; ui.pane_frames.rounded_corners = true; - ui.pane_frames.hide_session_name = false; + ui.pane_frames.hide_session_name = true; theme = "stylix"; themes.stylix = with config.lib.stylix.colors.withHashtag; { bg = base02; - fg = base06; + fg = base05; red = base08; green = base0B; blue = base0D; @@ -20,7 +20,7 @@ orange = base09; cyan = base0C; black = base00; - white = base07; + white = base05; }; }; };