From 33d1355303721c8d4993b79a8623543f0291fbbe Mon Sep 17 00:00:00 2001 From: albert Date: Mon, 29 Apr 2024 15:14:23 +0900 Subject: [PATCH] Updates --- home-manager/common/software/cli/zellij.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/home-manager/common/software/cli/zellij.nix b/home-manager/common/software/cli/zellij.nix index fccee46d..d68e6917 100644 --- a/home-manager/common/software/cli/zellij.nix +++ b/home-manager/common/software/cli/zellij.nix @@ -3,6 +3,21 @@ enable = true; enableBashIntegration = true; enableFishIntegration = true; - #settings = ''''; + settings = { + theme = "stylix"; + themes.stylix = with config.lib.stylix.colors.withHashtag; { + bg = base02; + fg = base06; + red = base08; + green = base0B; + blue = base0D; + yellow = base0A; + magenta = base0E; + orange = base09; + cyan = base0C; + black = base00; + white = base07; + }; + }; }; }