feat(shell): add zellij
This commit is contained in:
parent
0fba108a28
commit
28219c3342
|
@ -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
17
home/shell/zellij.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue