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

View file

@ -0,0 +1,16 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-pairs";
moduleName = "mini.pairs";
packPathName = "mini.pairs";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
modes = {
insert = true;
command = true;
terminal = false;
};
};
}

View file

@ -0,0 +1,18 @@
{
empty = {
plugins.mini-pairs.enable = true;
};
example = {
plugins.mini-pairs = {
enable = true;
settings = {
modes = {
insert = true;
command = true;
terminal = false;
};
};
};
};
}