mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 10:53:51 -08:00
fix: duplicate help tags from unused mini.git
This commit is contained in:
parent
b00ce44c64
commit
115b7d6b98
1 changed files with 8 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
# All the mini.nvim stuff
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
plugins.mini = {
|
||||
enable = true;
|
||||
|
@ -14,5 +15,12 @@
|
|||
cursorword = { };
|
||||
bracketed = { };
|
||||
};
|
||||
package = pkgs.vimPlugins.mini-nvim.overrideAttrs (oldAttrs: {
|
||||
postInstall =
|
||||
(oldAttrs.postInstall or "")
|
||||
+ ''
|
||||
rm $out/doc/mini-git.txt
|
||||
'';
|
||||
});
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue