Initial Commit
This commit is contained in:
30
lua/plugins/themery.lua
Normal file
30
lua/plugins/themery.lua
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user