feat(zsh): add plugin vi-mode

This commit is contained in:
Mohammad Rafiq 2025-03-22 02:12:13 +08:00
parent bc6d3c88e1
commit 78be78a8dc
No known key found for this signature in database

View file

@ -1,3 +1,4 @@
{ pkgs, ... }:
{ {
programs.zsh = { programs.zsh = {
enable = true; enable = true;
@ -19,5 +20,12 @@
dbus-run-session Hyprland dbus-run-session Hyprland
fi fi
''; '';
plugins = [
{
name = "vi-mode";
src = pkgs.zsh-vi-mode;
file = "share/zsh-vi-mode/zsh-vi-mode.plugin.zsh";
}
];
}; };
} }