Added themery.nvim plugin (need to fix themes collection)

This commit is contained in:
2025-11-17 21:30:46 +09:00
parent cee9892d02
commit 7ab26046f3
+15
View File
@@ -0,0 +1,15 @@
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,
}