diff --git a/users/modules/programs/zsh.nix b/users/modules/programs/zsh.nix index b59c51d..f5d36ed 100644 --- a/users/modules/programs/zsh.nix +++ b/users/modules/programs/zsh.nix @@ -1,3 +1,4 @@ +{ pkgs, ... }: { programs.zsh = { enable = true; @@ -19,5 +20,12 @@ dbus-run-session Hyprland fi ''; + plugins = [ + { + name = "vi-mode"; + src = pkgs.zsh-vi-mode; + file = "share/zsh-vi-mode/zsh-vi-mode.plugin.zsh"; + } + ]; }; }