add themes and change initial theme

This commit is contained in:
peturparkur 2024-07-04 21:14:27 +01:00
parent 5d516ba85f
commit 60ca6777e2
5 changed files with 57 additions and 1 deletions

View file

@ -0,0 +1,12 @@
return {
'EdenEast/nightfox.nvim',
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
require('nightfox').setup {
-- ...
}
vim.cmd 'colorscheme nightfox'
end,
}