You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
430 B
15 lines
430 B
return {
|
|
"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()
|
|
require("everforest").setup({
|
|
-- Your config here
|
|
transparent_background_level = 1,
|
|
background = "medium",
|
|
})
|
|
vim.cmd.colorscheme 'everforest'
|
|
end,
|
|
}
|