blob: 9b0b58ad44ec2e72ad85ee9ca74c4068719714d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
return {
{
"neanias/everforest-nvim",
lazy = false, -- load during startup
priority = 1000, -- load before all the other start plugins
config = function()
vim.cmd([[colorscheme everforest]]) -- set colortheme
end,
}
}
|