29 lines
595 B
Nix
29 lines
595 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.zellij = {
|
|
enable = true;
|
|
# enableFishIntegration = true;
|
|
# exitShellOnExit = true;
|
|
settings = {
|
|
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;
|
|
};
|
|
};
|
|
}
|