gk.nvim/lua/plugins/themery.lua
grechkagk-thinkpad 36c66e33e6 0.0.1
2026-02-01 16:42:22 +08:00

16 lines
269 B
Lua

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" },
},
}