mirror of https://github.com/LazyVim/starter
17 lines
689 B
Lua
17 lines
689 B
Lua
|
return {
|
||
|
"echasnovski/mini.icons",
|
||
|
opts = {
|
||
|
file = {
|
||
|
[".eslintrc.js"] = { glyph = "", hl = "MiniIconsYellow" },
|
||
|
[".node-version"] = { glyph = "", hl = "MiniIconsGreen" },
|
||
|
[".prettierrc"] = { glyph = "", hl = "MiniIconsPurple" },
|
||
|
[".yarnrc.yml"] = { glyph = "", hl = "MiniIconsBlue" },
|
||
|
["eslint.config.js"] = { glyph = "", hl = "MiniIconsYellow" },
|
||
|
["package.json"] = { glyph = "", hl = "MiniIconsGreen" },
|
||
|
["tsconfig.json"] = { glyph = "", hl = "MiniIconsAzure" },
|
||
|
["tsconfig.build.json"] = { glyph = "", hl = "MiniIconsAzure" },
|
||
|
["yarn.lock"] = { glyph = "", hl = "MiniIconsBlue" },
|
||
|
},
|
||
|
},
|
||
|
}
|