From 81c21f3b72ae7795b147a862ceb3bca079650d05 Mon Sep 17 00:00:00 2001 From: tavo Date: Wed, 27 Aug 2025 00:21:04 -0600 Subject: [PATCH] everforest --- nvim/lua/plugins/theme.lua | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) 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 }