plugins/web-devicons: support custom icons and default icon

This commit is contained in:
Austin Horstman 2024-09-29 09:19:31 -05:00
parent 4e2a022165
commit 844336ceb2
No known key found for this signature in database
2 changed files with 75 additions and 1 deletions

View file

@ -2,4 +2,46 @@
empty = {
plugins.web-devicons.enable = true;
};
custom-icons = {
plugins.web-devicons = {
enable = true;
customIcons = {
lir_folder_icon = {
icon = "";
color = "#7ebae4";
name = "LirFolderNode";
};
zsh = {
icon = "";
color = "#428850";
cterm_color = "65";
name = "Zsh";
};
};
};
};
default-icon = {
plugins.web-devicons = {
enable = true;
defaultIcon = {
icon = "";
color = "#7ebae4";
cterm_color = "65";
};
};
};
default-icon-no-color = {
plugins.web-devicons = {
enable = true;
defaultIcon = {
icon = "";
};
};
};
}