neovim-flake/config/plugins/mini.nix

19 lines
313 B
Nix
Raw Normal View History

# All the mini.nvim stuff
{
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 = { };
};
};
}