23 lines
509 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|