mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
refactor: removed some icons that are not needed
This commit is contained in:
parent
da10a489c2
commit
8166a0457d
4 changed files with 3 additions and 35 deletions
|
|
@ -41,14 +41,4 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Filetype icons
|
|
||||||
{
|
|
||||||
"echasnovski/mini.icons",
|
|
||||||
opts = {
|
|
||||||
file = {
|
|
||||||
["docker-compose.yml"] = { glyph = "", hl = "MiniIconsBlue" },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -19,14 +19,4 @@ return {
|
||||||
table.insert(opts.sources, { name = "git" })
|
table.insert(opts.sources, { name = "git" })
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Filetype icons
|
|
||||||
{
|
|
||||||
"echasnovski/mini.icons",
|
|
||||||
opts = {
|
|
||||||
file = {
|
|
||||||
[".keep"] = { glyph = "", hl = "MiniIconsGrey" },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -60,18 +60,4 @@ return {
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Filetype icons
|
|
||||||
{
|
|
||||||
"echasnovski/mini.icons",
|
|
||||||
opts = {
|
|
||||||
extension = {
|
|
||||||
bash = { glyph = "", hl = "MiniIconsGrey" },
|
|
||||||
zsh = { glyph = "", hl = "MiniIconsGrey" },
|
|
||||||
},
|
|
||||||
filetype = {
|
|
||||||
dotenv = { glyph = "", hl = "MiniIconsYellow" },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -308,11 +308,13 @@ return {
|
||||||
lazy = true,
|
lazy = true,
|
||||||
opts = {
|
opts = {
|
||||||
file = {
|
file = {
|
||||||
[".gitkeep"] = { glyph = "", hl = "MiniIconsGrey" },
|
|
||||||
[".keep"] = { glyph = "", hl = "MiniIconsGrey" },
|
[".keep"] = { glyph = "", hl = "MiniIconsGrey" },
|
||||||
["CODEOWNERS"] = { glyph = "", hl = "MiniIconsGreen" },
|
["CODEOWNERS"] = { glyph = "", hl = "MiniIconsGreen" },
|
||||||
["devcontainer.json"] = { glyph = "", hl = "MiniIconsAzure" },
|
["devcontainer.json"] = { glyph = "", hl = "MiniIconsAzure" },
|
||||||
},
|
},
|
||||||
|
filetype = {
|
||||||
|
dotenv = { glyph = "", hl = "MiniIconsYellow" },
|
||||||
|
},
|
||||||
},
|
},
|
||||||
init = function()
|
init = function()
|
||||||
package.preload["nvim-web-devicons"] = function()
|
package.preload["nvim-web-devicons"] = function()
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue