38 lines
644 B
Lua
38 lines
644 B
Lua
require'nvim-web-devicons'.setup {
|
|
-- DevIcon will be appended to `name`
|
|
override = {
|
|
zsh = {
|
|
icon = " ",
|
|
color = "#428850",
|
|
cterm_color = "65",
|
|
name = "Zsh"
|
|
}
|
|
};
|
|
color_icons = true;
|
|
default = true;
|
|
strict = true;
|
|
variant = "light|dark";
|
|
override_by_filename = {
|
|
[".gitignore"] = {
|
|
icon = " ",
|
|
color = "#f1502f",
|
|
name = "Gitignore"
|
|
}
|
|
};
|
|
override_by_extension = {
|
|
["log"] = {
|
|
icon = " ",
|
|
color = "#81e043",
|
|
name = "Log"
|
|
}
|
|
};
|
|
override_by_operating_system = {
|
|
["apple"] = {
|
|
icon = " ",
|
|
color = "#A2AAAD",
|
|
cterm_color = "248",
|
|
name = "Apple",
|
|
},
|
|
};
|
|
}
|