plugins/mini-tabline: init

This commit is contained in:
Heitor Augusto 2025-05-25 16:08:57 -03:00
parent 1c5c991fda
commit 104d51cab6
No known key found for this signature in database
GPG key ID: 53C04F8F46A1A344
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";
};
};
};
}