unfucking users again :3

This commit is contained in:
autumn
2025-08-27 10:47:56 -06:00
parent f25dbe159f
commit 44f5469b49
17 changed files with 126 additions and 183 deletions

View File

@@ -1,19 +1,28 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
zellij
];
programs.zellij = {
enable = true;
enableFishIntegration = true;
# enableFishIntegration = true;
exitShellOnExit = true;
settings = {
theme = "everforest-dark";
themes = {
custom = {
bg = "#2b3339";
fg = "#d3c6aa";
black = "#2b3339";
red = "#e67e80";
green = "#a7c080";
yellow = "#dbbc7f";
blue = "#7fbbb3";
magenta = "#d699b6";
cyan = "#83c092";
white = "#d3c6aa";
orange = "#FF9E64";
};
};
theme = "custom";
advanced_mouse_actions = false;
};
};
}