This commit is contained in:
Heitor Augusto 2025-06-20 13:14:43 +00:00 committed by GitHub
commit 87ef58cb00
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 24 additions and 0 deletions

View file

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

View file

@ -0,0 +1,12 @@
{
empty = {
plugins.mini-align.enable = true;
};
example = {
plugins.mini-align = {
enable = true;
settings.silent = true;
};
};
}