33 lines
607 B
Lua
33 lines
607 B
Lua
return {
|
|
-- Lazy
|
|
{
|
|
"maxmx03/solarized.nvim",
|
|
lazy = false,
|
|
priority = 1000,
|
|
---@type solarized.config
|
|
opts = {},
|
|
config = function(_, opts)
|
|
vim.o.termguicolors = true
|
|
vim.o.background = "light"
|
|
require("solarized").setup(opts)
|
|
vim.cmd.colorscheme("solarized")
|
|
end,
|
|
},
|
|
{
|
|
"catppuccin/nvim",
|
|
name = "catppuccin",
|
|
priority = 1000,
|
|
opts = {
|
|
flavour = "mocha",
|
|
-- transparent_background = true,
|
|
},
|
|
},
|
|
-- somewhere in your config:
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "solarized",
|
|
},
|
|
},
|
|
}
|