21 lines
323 B
Nix
21 lines
323 B
Nix
|
{
|
||
|
programs.nixvim.plugins.mini = {
|
||
|
enable = true;
|
||
|
|
||
|
modules = {
|
||
|
align = {};
|
||
|
basics = {
|
||
|
options.extra_ui = true;
|
||
|
};
|
||
|
clue = {};
|
||
|
cursorword = {};
|
||
|
doc = {};
|
||
|
extra = {};
|
||
|
indentscope = {};
|
||
|
trailspace = {};
|
||
|
misc = {};
|
||
|
surround = {};
|
||
|
};
|
||
|
};
|
||
|
}
|