fix: duplicate help tags from unused mini.git

This commit is contained in:
Youwen Wu 2024-09-17 14:22:14 -07:00
parent b00ce44c64
commit 115b7d6b98
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -1,4 +1,5 @@
# All the mini.nvim stuff # All the mini.nvim stuff
{ pkgs, ... }:
{ {
plugins.mini = { plugins.mini = {
enable = true; enable = true;
@ -14,5 +15,12 @@
cursorword = { }; cursorword = { };
bracketed = { }; bracketed = { };
}; };
package = pkgs.vimPlugins.mini-nvim.overrideAttrs (oldAttrs: {
postInstall =
(oldAttrs.postInstall or "")
+ ''
rm $out/doc/mini-git.txt
'';
});
}; };
} }