mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 19:03:49 -08:00
26 lines
520 B
Nix
26 lines
520 B
Nix
# All the mini.nvim stuff
|
|
{ pkgs, ... }:
|
|
{
|
|
plugins.mini = {
|
|
enable = true;
|
|
modules = {
|
|
surround = { };
|
|
ai = { };
|
|
hipatterns = { };
|
|
notify = {
|
|
lsp_progress.enable = false;
|
|
};
|
|
tabline = { };
|
|
trailspace = { };
|
|
cursorword = { };
|
|
bracketed = { };
|
|
};
|
|
package = pkgs.vimPlugins.mini-nvim.overrideAttrs (oldAttrs: {
|
|
postInstall =
|
|
(oldAttrs.postInstall or "")
|
|
+ ''
|
|
rm $out/doc/mini-git.txt
|
|
'';
|
|
});
|
|
};
|
|
}
|