From 78be78a8dc4b474f95517b55837f3ca878795326 Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Sat, 22 Mar 2025 02:12:13 +0800 Subject: [PATCH] feat(zsh): add plugin vi-mode --- users/modules/programs/zsh.nix | 8 ++++++++ 1 file changed, 8 insertions(+) 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"; + } + ]; }; }