mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 00:49:01 +02:00
11 lines
229 B
Lua
11 lines
229 B
Lua
local M = {}
|
|
if pcode.adaptive_color_icon then
|
|
M = {
|
|
"rachartier/tiny-devicons-auto-colors.nvim",
|
|
event = "VeryLazy",
|
|
config = function()
|
|
require("tiny-devicons-auto-colors").setup()
|
|
end,
|
|
}
|
|
end
|
|
return M
|