Skip to content

Commit 717508a

Browse files
HeitorAugustoLNkhaneliman
authored andcommitted
plugins/mini-align: init
1 parent b836928 commit 717508a

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-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-align";
4+
moduleName = "mini.align";
5+
packPathName = "mini.align";
6+
7+
maintainers = [ lib.maintainers.HeitorAugustoLN ];
8+
9+
settingsExample = {
10+
silent = true;
11+
};
12+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
empty = {
3+
plugins.mini-align.enable = true;
4+
};
5+
6+
example = {
7+
plugins.mini-align = {
8+
enable = true;
9+
settings.silent = true;
10+
};
11+
};
12+
}

0 commit comments

Comments
 (0)