This commit is contained in:
Zelong Kuang
2025-09-30 22:59:47 +10:00
parent 46c470d1f7
commit b5303f2cdd
28 changed files with 279 additions and 1689 deletions

View File

@@ -1,16 +1,32 @@
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,
-- },
{
"maxmx03/solarized.nvim",
"zenbones-theme/zenbones.nvim",
-- Optionally install Lush. Allows for more configuration or extending the colorscheme
-- If you don't want to install lush, make sure to set g:zenbones_compat = 1
-- In Vim, compat mode is turned on as Lush only works in Neovim.
dependencies = "rktjmp/lush.nvim",
lazy = false,
priority = 1000,
---@type solarized.config
opts = {},
config = function(_, opts)
vim.o.termguicolors = true
-- you can set set configuration options here
config = function()
vim.g.zenbones_darken_comments = 45
vim.cmd.colorscheme("zenbones")
vim.o.background = "light"
require("solarized").setup(opts)
vim.cmd.colorscheme("solarized")
vim.o.termguicolors = true
end,
},
{
@@ -26,7 +42,7 @@ return {
{
"LazyVim/LazyVim",
opts = {
colorscheme = "solarized",
colorscheme = "zenbones",
},
},
}