diff --git a/nvim/lua/plugins/theme.lua b/nvim/lua/plugins/theme.lua index f206ac3..a1fa0f6 100644 --- a/nvim/lua/plugins/theme.lua +++ b/nvim/lua/plugins/theme.lua @@ -1,12 +1,10 @@ return { - -- add gruvbox - { "ellisonleao/gruvbox.nvim" }, - - -- Configure LazyVim to load gruvbox - { - "LazyVim/LazyVim", - opts = { - colorscheme = "gruvbox", - }, - }, + 'sainnhe/everforest', + lazy = false, + priority = 1000, + config = function() + vim.g.everforest_enable_italic = true + vim.g.everforest_background = 'hard' + vim.cmd.colorscheme('everforest') + end }