plugins/mini-tabline: init

This commit is contained in:
Heitor Augusto 2025-05-25 16:08:57 -03:00 committed by Austin Horstman
parent d49df12b9d
commit 6b2e98bc47
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-tabline";
moduleName = "mini.tabline";
packPathName = "mini.tabline";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
show_icons = false;
tabpage_section = "right";
};
}

View file

@ -0,0 +1,15 @@
{
empty = {
plugins.mini-tabline.enable = true;
};
example = {
plugins.mini-tabline = {
enable = true;
settings = {
show_icons = false;
tabpage_section = "right";
};
};
};
}