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

39 lines
1018 B
Lua
Raw Normal View History

2025-05-13 19:37:28 +10:00
return {
2025-10-05 21:01:41 +11: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",
-- lazy = false,
-- priority = 1000,
-- -- you can set set configuration options here
-- config = function()
-- vim.g.zenbones_darken_comments = 45
-- vim.cmd.colorscheme("zenbones")
-- vim.o.background = "light"
-- vim.o.termguicolors = true
-- end,
-- },
2025-05-13 19:37:28 +10:00
{
"catppuccin/nvim",
name = "catppuccin",
priority = 1000,
opts = {
flavour = "mocha",
2025-10-11 17:18:56 +11:00
transparent_background = true,
float = {
transparent = true,
},
-- auto_integrations = true,
2025-05-13 19:37:28 +10:00
},
},
-- somewhere in your config:
{
"LazyVim/LazyVim",
opts = {
2025-10-05 21:01:41 +11:00
colorscheme = "catppuccin",
2025-05-13 19:37:28 +10:00
},
},
}