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

28 lines
691 B
Nix
Raw Normal View History

2024-04-29 21:24:56 +09:00
{ config, pkgs, inputs, system, ... }: {
2024-04-29 13:55:26 +09:00
programs.zellij = {
enable = true;
2024-04-29 15:14:23 +09:00
settings = {
2024-04-29 20:06:50 +09:00
session_serialization = false;
2024-04-29 22:02:25 +09:00
default_layout = "compact";
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
};
}