(vimPlugins.nvzone-typr): fix name

The nvzone plugins were named with an `nvzone` prefix due to how generic the individual plugins are: NixOS#357120 This caused their pnames to also have an `nvzone` prefix. However, plugin managers like Lazy.nvim expect pname to match the name of the git repository, hence the override of pname in this commit.
This commit is contained in:
Michael Hollingworth
2025-08-16 10:34:28 -05:00
committed by GitHub
parent 011a435bd2
commit d96a97a70b
@@ -2783,6 +2783,8 @@ in
};
nvzone-typr = super.nvzone-typr.overrideAttrs {
# Plugin managers like Lazy.nvim expect pname to maych the name of the git repository
pname = "typr";
dependencies = [ self.nvzone-volt ];
};