nix-community.nixvim/tests/test-sources/plugins/by-name/mini-tabline/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
229 B
Nix
Raw Normal View History

2025-05-25 16:08:57 -03:00
{
empty = {
plugins.mini-tabline.enable = true;
};
example = {
plugins.mini-tabline = {
enable = true;
settings = {
show_icons = false;
tabpage_section = "right";
};
};
};
}