This commit is contained in:
Heitor Augusto 2025-06-20 13:24:23 +00:00 committed by GitHub
commit 20552a763d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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";
};
};
};
}