nixos-config/home/shell/zellij.nix

21 lines
520 B
Nix

{ pkgs, ... }:
{
programs.zellij.enable = true;
programs.zellij.package = pkgs.unstable.zellij;
programs.zellij.enableZshIntegration = true;
programs.zellij.exitShellOnExit = true;
programs.zellij.settings = {
default_layout = "compact"; # or default
default_mode = "normal";
show_startup_tips = false;
ui.pane_frames = {
hide_session_name = true;
};
plugins = {
tab-bar.path = "tab-bar";
status-bar.path = "status-bar";
strider.path = "strider";
};
};
}