From d96a97a70bdd5ba91a2a97fa8997e938596781fa Mon Sep 17 00:00:00 2001 From: Michael Hollingworth <8094643+M3L6H@users.noreply.github.com> Date: Sat, 16 Aug 2025 10:34:28 -0500 Subject: [PATCH] (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. --- pkgs/applications/editors/vim/plugins/overrides.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index 7fa406a6a28c..aed405dc3cab 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -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 ]; };