From 6f7cf23b226ceaee0a2d479c505652065dfe526f Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 4 Aug 2024 10:37:52 +0200 Subject: [PATCH] plugins/gitblame: completely drop helpers --- plugins/git/gitblame.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/git/gitblame.nix b/plugins/git/gitblame.nix index d4f15104..f910c128 100644 --- a/plugins/git/gitblame.nix +++ b/plugins/git/gitblame.nix @@ -1,6 +1,5 @@ { lib, - helpers, config, pkgs, ... @@ -9,7 +8,7 @@ let inherit (lib.nixvim) defaultNullOpts mkPackageOption; types = lib.nixvim.nixvimTypes; in -helpers.neovim-plugin.mkNeovimPlugin config { +lib.nixvim.neovim-plugin.mkNeovimPlugin config { name = "gitblame"; originalName = "git-blame.nvim"; defaultPackage = pkgs.vimPlugins.git-blame-nvim;