From 7660d9ebb75285837531975828c2df7e5314605f Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Wed, 10 Sep 2025 13:17:27 -0500 Subject: [PATCH] plugins/harpoon: fix pack path name Lazy loading needs the correct name for finding the plugin in `opt`. With change to `harpoon2` as the default, we need to fix the `packPathName` to match. --- plugins/by-name/harpoon/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/by-name/harpoon/default.nix b/plugins/by-name/harpoon/default.nix index 45da24e3..6ebb519f 100644 --- a/plugins/by-name/harpoon/default.nix +++ b/plugins/by-name/harpoon/default.nix @@ -9,6 +9,7 @@ in lib.nixvim.plugins.mkNeovimPlugin { name = "harpoon"; package = "harpoon2"; + packPathName = "harpoon2"; description = "Quickly access files and marks in Neovim."; maintainers = [ lib.maintainers.GaetanLepage ];