mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-05 06:44:33 +02:00
14 lines
278 B
Nix
14 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";
|
||
|
};
|
||
|
}
|