mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
12 lines
235 B
Lua
12 lines
235 B
Lua
|
local M = {}
|
||
|
if vim.g.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
|