mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-10 01:04:34 +02:00
plugins/web-devicons: support custom icons and default icon
This commit is contained in:
parent
4e2a022165
commit
844336ceb2
2 changed files with 75 additions and 1 deletions
|
@ -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 = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue