Add everforest theme

This commit is contained in:
Lucas Barbieri 2024-05-14 09:27:59 -03:00
parent fee2dd90cb
commit f94c94226f

View File

@ -93,6 +93,25 @@ elseif fileContent == "monochrome" then
} }
}, },
} }
elseif fileContent == "forest" then
colorscheme = {
"neanias/everforest-nvim",
version = false,
lazy = false,
priority = 1000, -- make sure to load this before all the other start plugins
-- Optional; default configuration will be used if setup isn't called.
config = function()
vim.o.termguicolors = true
require("everforest").setup({
background = "hard",
italics = true,
ui_contrast = "high",
dim_inactive_windows = true,
})
vim.cmd.colorscheme("everforest")
end,
}
elseif fileContent == "solarized" then elseif fileContent == "solarized" then
colorscheme = { colorscheme = {
'maxmx03/solarized.nvim', 'maxmx03/solarized.nvim',