Skip to content

Commit ee2c095

Browse files
HeitorAugustoLNkhaneliman
authored andcommitted
plugins/mini-bufremove: init
1 parent 7924369 commit ee2c095

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{ lib, ... }:
2+
lib.nixvim.plugins.mkNeovimPlugin {
3+
name = "mini-bufremove";
4+
moduleName = "mini.bufremove";
5+
packPathName = "mini.bufremove";
6+
7+
maintainers = [ lib.maintainers.HeitorAugustoLN ];
8+
9+
settingsExample = {
10+
silent = true;
11+
};
12+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
empty = {
3+
plugins.mini-bufremove.enable = true;
4+
};
5+
6+
example = {
7+
plugins.mini-bufremove = {
8+
enable = true;
9+
settings = {
10+
silent = true;
11+
};
12+
};
13+
};
14+
}

0 commit comments

Comments
 (0)