nvim/lua/plugins/colorscheme.lua
Benjamin Palko 29551b30c8 color
2025-11-11 09:32:15 -05:00

26 lines
598 B
Lua
Executable file

return {
-- { "ellisonleao/gruvbox.nvim" },
{ "neanias/everforest-nvim", name = "everforest", opts = { transparent_background_level = 1 } },
-- {
-- "catppuccin/nvim",
-- name = "catppuccin",
-- priority = 1000,
-- opts = { flavour = "mocha", transparent_background = true },
-- },
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {
transparent = true,
},
},
-- Configure LazyVim to load gruvbox
{
"LazyVim/LazyVim",
opts = {
colorscheme = "tokyonight-moon",
-- colorscheme = "everforest",
},
},
}