Files
nvim/lua/plugins/ui/colorscheme.lua
Zelong Kuang 46c470d1f7 Update
2025-09-21 20:43:38 +10:00

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",
},
},
}