mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-25 03:03:49 -08:00
18 lines
298 B
Nix
18 lines
298 B
Nix
|
# All the mini.nvim stuff
|
||
|
{
|
||
|
programs.nixvim.plugins.mini = {
|
||
|
enable = true;
|
||
|
modules = {
|
||
|
surround = {};
|
||
|
ai = {};
|
||
|
hipatterns = {};
|
||
|
notify = {};
|
||
|
tabline = {};
|
||
|
trailspace = {};
|
||
|
comment = {};
|
||
|
cursorword = {};
|
||
|
bracketed = {};
|
||
|
};
|
||
|
};
|
||
|
}
|