diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua index 956d2f9..f58bf48 100644 --- a/lua/plugins/init.lua +++ b/lua/plugins/init.lua @@ -8,7 +8,7 @@ return { }, { "folke/tokyonight.nvim", - lazy = false, -- make sure we load this during startup if it is your main colorscheme + lazy = true, -- 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() vim.g.tokyonight_style = "night" @@ -18,6 +18,18 @@ return { vim.cmd([[colorscheme tokyonight]]) end, }, + { + "ellisonleao/gruvbox.nvim", + lazy = false, -- make sure we load this during startup if it is your main colorscheme + priority = 1000 , + config = function() + require("gruvbox").setup({ + dim_inactive = false, + }) + vim.o.background = "light" + vim.cmd([[colorscheme gruvbox]]) + end, + }, { "folke/trouble.nvim", config = function()