Added themery.nvim plugin (need to fix themes collection)
This commit is contained in:
@@ -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,
|
||||
}
|
||||
Reference in New Issue
Block a user