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

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

27 lines
405 B
Nix
Raw Normal View History

2025-05-24 17:04:56 -03:00
{
empty = {
plugins.mini-icons.enable = true;
};
example = {
plugins.mini-icons = {
enable = true;
settings = {
style = "glyph";
extension = {
lua = {
hl = "Special";
};
};
file = {
"init.lua" = {
glyph = "";
hl = "MiniIconsGreen";
};
};
};
};
};
}