feat(shell): add zellij

This commit is contained in:
Felix Schröter 2024-04-30 23:06:36 +02:00
parent 0fba108a28
commit 28219c3342
Signed by: felschr
GPG key ID: 671E39E6744C807D
2 changed files with 18 additions and 0 deletions

View file

@ -6,6 +6,7 @@
./zsh.nix
./nushell.nix
./starship.nix
./zellij.nix
./zoxide.nix
./kitty.nix
./direnv.nix

17
home/shell/zellij.nix Normal file
View file

@ -0,0 +1,17 @@
{ pkgs, ... }:
{
programs.zellij.enable = true;
programs.zellij.package = pkgs.unstable.zellij;
programs.zellij.enableZshIntegration = true;
programs.zellij.settings = {
default_layout = "compact"; # or default
default_mode = "locked";
ui.pane_frames = { hide_session_name = true; };
plugins = {
tab-bar.path = "tab-bar";
status-bar.path = "status-bar";
strider.path = "strider";
};
};
}