diff --git a/home/shell/default.nix b/home/shell/default.nix index 03832ac..7eb3a45 100644 --- a/home/shell/default.nix +++ b/home/shell/default.nix @@ -17,6 +17,7 @@ ./rip.nix ./starship.nix ./tldr.nix + ./zellij.nix ./zoxide.nix ./zsh ]; diff --git a/home/shell/zellij.nix b/home/shell/zellij.nix new file mode 100644 index 0000000..2018ce8 --- /dev/null +++ b/home/shell/zellij.nix @@ -0,0 +1,8 @@ +{...}: { + programs.zellij = { + enable = true; + enableBashIntegration = true; + enableFishIntegration = true; + enableZshIntegration = true; + }; +}