Skip to content

Commit f79250d

Browse files
HeitorAugustoLNkhaneliman
authored andcommitted
plugins/mini-statusline: init
1 parent f93cdcb commit f79250d

File tree

2 files changed

+27
-0
lines changed

2 files changed

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

0 commit comments

Comments
 (0)