From db229359100e1e62c4765d89405e520ab247ca7a Mon Sep 17 00:00:00 2001 From: aaron Date: Tue, 24 Mar 2026 16:17:30 +0100 Subject: [PATCH] fix(nvim): add plenary as extraPlugins --- modules/home-manager/nixvim.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/home-manager/nixvim.nix b/modules/home-manager/nixvim.nix index 0d4007d..355dae1 100644 --- a/modules/home-manager/nixvim.nix +++ b/modules/home-manager/nixvim.nix @@ -22,5 +22,6 @@ plugins.telescope.enable = true; plugins.web-devicons.enable = true; plugins.indent-blankline.enable = true; + extraPlugins = [ pkgs.vimPlugins.plenary-nvim ]; }; }