Skip to content

Commit 6b2e98b

Browse files
HeitorAugustoLNkhaneliman
authored andcommitted
plugins/mini-tabline: init
1 parent d49df12 commit 6b2e98b

File tree

2 files changed

+28
-0
lines changed

2 files changed

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

0 commit comments

Comments
 (0)