nixos-config/home/shell/zellij.nix

24 lines
512 B
Nix
Raw Permalink Normal View History

2024-04-30 23:06:36 +02:00
{ 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";
2024-05-26 16:45:38 +02:00
ui.pane_frames = {
hide_session_name = true;
};
2024-04-30 23:06:36 +02:00
plugins = {
tab-bar.path = "tab-bar";
status-bar.path = "status-bar";
strider.path = "strider";
};
};
2024-05-26 16:45:38 +02:00
home.sessionVariables = {
ZELLIJ_AUTO_EXIT = "true";
};
2024-04-30 23:06:36 +02:00
}