This commit is contained in:
Heitor Augusto 2025-06-20 13:18:04 +00:00 committed by GitHub
commit e952cda050
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 68 additions and 0 deletions

View file

@ -0,0 +1,42 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "mini-icons";
moduleName = "mini.icons";
packPathName = "mini.icons";
configLocation = lib.mkOrder 800 "extraConfigLua";
maintainers = [ lib.maintainers.HeitorAugustoLN ];
settingsExample = {
style = "glyph";
extension = {
lua = {
hl = "Special";
};
};
file = {
"init.lua" = {
glyph = "";
hl = "MiniIconsGreen";
};
};
};
extraOptions = {
mockDevIcons = lib.mkEnableOption "" // {
description = ''
Whether to tell `mini.icons` to emulate `nvim-web-devicons` for plugins that don't natively support it.
When enabled, you don't need to set `plugins.web-devicons.enable`. This will replace the need for it.
'';
};
};
extraConfig = cfg: {
plugins.mini-icons.luaConfig.content = lib.mkAfter (
lib.optionalString cfg.mockDevIcons ''
MiniIcons.mock_nvim_web_devicons()
''
);
};
}

View file

@ -0,0 +1,26 @@
{
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";
};
};
};
};
};
}