mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-01 16:45:07 +02:00
26 lines
405 B
Nix
26 lines
405 B
Nix
{
|
|
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|