mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-11 09:44:32 +02:00
15 lines
212 B
Nix
15 lines
212 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.mini-trailspace.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.mini-trailspace = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
only_in_normal_buffers = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|