plugins/mini-pairs: init

This commit is contained in:
Heitor Augusto 2025-05-24 17:54:48 -03:00 committed by Austin Horstman
parent f79250de79
commit c1520693f0
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;
};
};
};
};
}