moved themes to themes dir

This commit is contained in:
2024-05-14 23:56:59 +02:00
parent 3b17c39a61
commit e6879ea135
13 changed files with 2 additions and 1 deletions

15
lua/themes/everforest.lua Normal file
View File

@ -0,0 +1,15 @@
return {
'neanias/everforest-nvim',
version = false,
lazy = true,
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({
background = 'hard',
-- Your config here
})
require('everforest').load()
end,
enabled = true
}