This commit is contained in:
grechkagk-thinkpad 2026-02-01 16:42:22 +08:00
commit 36c66e33e6
17 changed files with 348 additions and 0 deletions

16
lua/plugins/themery.lua Normal file
View file

@ -0,0 +1,16 @@
return {
"zaldih/themery.nvim",
lazy = false,
config = function()
require("themery").setup({
themes = {
"github_dark",
"github_light",
},
livePreview = true,
})
end,
keys = {
{ "<leader>c", "<cmd>Themery<CR>", desc = "theme picker" },
},
}