diff --git a/lua/plugins/themery.lua b/lua/plugins/themery.lua new file mode 100644 index 0000000..7cf2d62 --- /dev/null +++ b/lua/plugins/themery.lua @@ -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, +}