plugins/mini-pairs: init

This commit is contained in:
Heitor Augusto 2025-05-24 17:54:48 -03:00
parent 2c0a9ff1e2
commit 2613fcfe8a
No known key found for this signature in database
GPG key ID: 53C04F8F46A1A344
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;
};
};
};
};
}