Initial Commit

This commit is contained in:
Falon Clark
2026-03-19 13:09:21 -04:00
commit a7f8df9e50
24 changed files with 537 additions and 0 deletions

30
lua/plugins/themery.lua Normal file
View File

@@ -0,0 +1,30 @@
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
}