nix/home-manager/common/software/cli/zellij.nix
2024-04-29 15:14:23 +09:00

23 lines
509 B
Nix

{ ... }: {
programs.zellij = {
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
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;
};
};
};
}