Skip to content

Commit c152069

Browse files
HeitorAugustoLNkhaneliman
authored andcommitted
plugins/mini-pairs: init
1 parent f79250d commit c152069

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{ lib, ... }:
2+
lib.nixvim.plugins.mkNeovimPlugin {
3+
name = "mini-pairs";
4+
moduleName = "mini.pairs";
5+
packPathName = "mini.pairs";
6+
7+
maintainers = [ lib.maintainers.HeitorAugustoLN ];
8+
9+
settingsExample = {
10+
modes = {
11+
insert = true;
12+
command = true;
13+
terminal = false;
14+
};
15+
};
16+
}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
empty = {
3+
plugins.mini-pairs.enable = true;
4+
};
5+
6+
example = {
7+
plugins.mini-pairs = {
8+
enable = true;
9+
settings = {
10+
modes = {
11+
insert = true;
12+
command = true;
13+
terminal = false;
14+
};
15+
};
16+
};
17+
};
18+
}

0 commit comments

Comments
 (0)