nix/home-manager/common/software/cli/zellij.nix

28 lines
670 B
Nix
Raw Normal View History

2024-04-29 15:15:42 +09:00
{ config, ... }: {
2024-04-29 13:55:26 +09:00
programs.zellij = {
enable = true;
2024-04-29 19:34:53 +09:00
# enableBashIntegration = true;
# enableFishIntegration = true;
2024-04-29 15:14:23 +09:00
settings = {
2024-04-29 16:57:37 +09:00
mirror_session = true;
simplified_ui = true;
ui.pane_frames.rounded_corners = true;
2024-04-29 19:34:53 +09:00
ui.pane_frames.hide_session_name = true;
2024-04-29 15:14:23 +09:00
theme = "stylix";
themes.stylix = with config.lib.stylix.colors.withHashtag; {
bg = base02;
2024-04-29 19:34:53 +09:00
fg = base05;
2024-04-29 15:14:23 +09:00
red = base08;
green = base0B;
blue = base0D;
yellow = base0A;
magenta = base0E;
orange = base09;
cyan = base0C;
black = base00;
2024-04-29 19:34:53 +09:00
white = base05;
2024-04-29 15:14:23 +09:00
};
};
2024-04-29 13:55:26 +09:00
};
}