mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-16 23:41:43 +02:00
27 lines
405 B
Nix
27 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";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|