This commit is contained in:
Heitor Augusto 2025-06-20 13:23:35 +00:00 committed by GitHub
commit 3f5c7a8e87
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-trailspace";
moduleName = "mini.trailspace";
packPathName = "mini.trailspace";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
only_in_normal_buffers = false;
};
}

View file

@ -0,0 +1,14 @@
{
empty = {
plugins.mini-trailspace.enable = true;
};
example = {
plugins.mini-trailspace = {
enable = true;
settings = {
only_in_normal_buffers = false;
};
};
};
}