snowflake/home/zellij/default.nix

30 lines
626 B
Nix
Raw Normal View History

2023-04-23 17:45:37 -04:00
{...}: {
2023-03-11 19:05:07 -05:00
imports = [
./layouts.nix
];
2023-04-23 17:45:37 -04:00
2023-03-11 09:53:02 -05:00
programs.zellij = {
enable = true;
settings = {
2023-03-11 19:05:07 -05:00
on_force_close = "quit";
simplified_ui = false;
default_layout = "default";
ui.pane_frames.rounded_corners = true;
theme = "catppuccin-mocha";
themes.catppuccin-mocha = {
bg = "#585b70";
fg = "#cdd6f4";
red = "#f38ba8";
green = "#a6e3a1";
blue = "#89b4fa";
yellow = "#f9e2af";
magenta = "#f5c2e7";
orange = "#fab387";
cyan = "#89dceb";
black = "#181825";
white = "#cdd6f4";
2023-04-23 17:45:37 -04:00
};
};
};
2023-03-11 09:53:02 -05:00
}