16 lines
366 B
Lua
16 lines
366 B
Lua
return {
|
|
"zaldih/themery.nvim",
|
|
-- lazy = true,
|
|
config = function()
|
|
local colors = vim.fn.getcompletion("", "color")
|
|
local themes = {}
|
|
for k,v in ipairs(colors) do
|
|
table.insert(themes, v)
|
|
end
|
|
require("themery").setup({
|
|
themes = themes,
|
|
livePreview = true,
|
|
})
|
|
end,
|
|
}
|