From c66027a36132c719ae9cb91c9e1eacc175149b2d Mon Sep 17 00:00:00 2001 From: Salar Rahmanian Date: Fri, 6 Oct 2023 15:06:23 -0700 Subject: [PATCH] add gruvbox theme --- lua/plugins/init.lua | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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()