plugins/gitgutter: fix grepPackage

Resolves https://github.com/nix-community/nixvim/issues/2124
This commit is contained in:
Austin Horstman 2024-08-31 09:09:27 -05:00
parent ee6ee48bbe
commit b6d96387d1
No known key found for this signature in database

View file

@ -193,7 +193,7 @@ in
foldtext = "gitgutter#fold#foldtext";
};
extraPackages = [ cfg.gitPackage ] ++ [ grepPackage ];
extraPackages = [ cfg.gitPackage ] ++ grepPackage;
globals = {
gitgutter_max_signs = mkIf (cfg.maxSigns != null) cfg.maxSigns;