mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-04 22:34:31 +02:00
13 lines
278 B
Nix
13 lines
278 B
Nix
{ 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";
|
|
};
|
|
}
|