nvim/lua/plugins/colorscheme.lua
2026-08-18 12:11:25 -04:00

31 lines
585 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,
},
},
{
"LazyVim/LazyVim",
opts = {
-- colorscheme = "tokyonight-moon",
colorscheme = "everforest",
},
},
}