This commit is contained in:
2025-08-12 17:56:16 +00:00
parent 2c4fb98fc7
commit ed7fc605b1
37 changed files with 12 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
{
lib,
pkgs,
...
}: {
programs.zellij = {
enable = true;
enableFishIntegration = lib.mkDefault false;
settings = {
theme = "catppuccin-latte";
default_layout = "compact";
default_shell = "${pkgs.fish}/bin/fish";
no_pane_frames = true;
show_startup_tips = false;
show_release_notes = false;
};
};
}