Files
nvim/lua/plugins/ui/colorscheme.lua

49 lines
1.2 KiB
Lua
Raw Normal View History

2025-05-13 19:37:28 +10:00
return {
-- Lazy
2025-09-30 22:59:47 +10:00
-- {
-- "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,
-- },
2025-09-21 20:43:38 +10:00
{
2025-09-30 22:59:47 +10:00
"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",
2025-09-21 20:43:38 +10:00
lazy = false,
priority = 1000,
2025-09-30 22:59:47 +10:00
-- you can set set configuration options here
config = function()
vim.g.zenbones_darken_comments = 45
vim.cmd.colorscheme("zenbones")
2025-09-21 20:43:38 +10:00
vim.o.background = "light"
2025-09-30 22:59:47 +10:00
vim.o.termguicolors = true
2025-09-21 20:43:38 +10:00
end,
},
2025-05-13 19:37:28 +10:00
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
opts = {
flavour = "mocha",
-- transparent_background = true,
},
},
-- somewhere in your config:
{
"LazyVim/LazyVim",
opts = {
2025-09-30 22:59:47 +10:00
colorscheme = "zenbones",
2025-05-13 19:37:28 +10:00
},
},
}