Files
nvim-config/lua/plugins/themery.lua
2026-03-19 13:09:21 -04:00

31 lines
915 B
Lua

return {
"zaldih/themery.nvim",
lazy = false,
config = function()
require("themery").setup({
themes = {
{
name = "Catppuccin",
colorscheme = "catppuccin",
before = [[
vim.opt.background = "dark"
]],
after = [[
require("lualine").setup({ options = { theme = "ayu_mirage" } })
]]
},
{
name = "Gruvbox",
colorscheme = "gruvbox",
before = [[
vim.opt.background = "dark"
]],
after = [[
require("lualine").setup({ options = { theme = "gruvbox" } })
]]
}
}
})
end
}