From 7ab26046f3f40c9c91653d90a9b504c50cae6005 Mon Sep 17 00:00:00 2001 From: SL1900 Date: Mon, 17 Nov 2025 21:30:46 +0900 Subject: [PATCH] Added themery.nvim plugin (need to fix themes collection) --- lua/plugins/themery.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lua/plugins/themery.lua 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, +}