neovim-flake/config/plugins/mini.nix

27 lines
520 B
Nix
Raw Normal View History

# All the mini.nvim stuff
{ pkgs, ... }:
{
plugins.mini = {
enable = true;
modules = {
2024-09-02 18:28:53 -07:00
surround = { };
ai = { };
hipatterns = { };
notify = {
lsp_progress.enable = false;
};
2024-09-02 18:28:53 -07:00
tabline = { };
trailspace = { };
cursorword = { };
bracketed = { };
};
package = pkgs.vimPlugins.mini-nvim.overrideAttrs (oldAttrs: {
postInstall =
(oldAttrs.postInstall or "")
+ ''
rm $out/doc/mini-git.txt
'';
});
};
}