16 lines
269 B
Lua
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" },
|
|
},
|
|
}
|