1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-17 22:41:13 +01:00

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.
This commit is contained in:
Austin Horstman 2025-09-10 13:17:27 -05:00
parent 4933397031
commit 7660d9ebb7

View file

@ -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 ];