mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
15 lines
192 B
Nix
15 lines
192 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.mini-cursorword.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.mini-cursorword = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
delay = 50;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|