This commit is contained in:
Aria Nolan 2024-04-19 14:45:02 -04:00
parent 7203708871
commit b4a0681c07
3 changed files with 28 additions and 5 deletions

View file

@ -4,10 +4,10 @@
./taskwarrior.nix
./firefox.nix
./fzf.nix
./tmux.nix
./tiny.nix
./zoxide.nix
./ncmpcpp.nix
./zellij.nix
];
programs.eza = {

View file

@ -0,0 +1,27 @@
{...}: {
programs.zellij = {
enable = true;
enableFishIntegration = true;
settings = {
simplified_ui = true;
default_shell = "fish";
copy_command = "wl-copy";
pane_frames = false;
default_mode = "locked";
theme = "custom";
themes.custom = {
bg = "#44415a";
fg = "#e0def4";
red = "#eb6f92";
green = "#3e8fb0";
blue = "#9ccfd8";
yellow = "#f6c177";
magenta = "#c4a7e7";
orange = "#fe640b";
cyan = "#ea9a97";
black = "#393552";
white = "#e0def4";
};
};
};
}

View file

@ -6,10 +6,6 @@
fish_vi_key_bindings
set -g fish_cursor_insert line
if not set -q TMUX
tmux attach
end
'';
};
}