starting zellij conf

This commit is contained in:
autumn
2025-08-26 13:34:14 -06:00
parent e4e93d4c65
commit f25dbe159f
6 changed files with 88 additions and 63 deletions

View File

@@ -0,0 +1,19 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
zellij
];
programs.zellij = {
enable = true;
enableFishIntegration = true;
exitShellOnExit = true;
settings = {
theme = "everforest-dark";
};
};
}