diff options
Diffstat (limited to 'lua/plugins')
-rw-r--r-- | lua/plugins/eyecandy/themes.lua | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lua/plugins/eyecandy/themes.lua b/lua/plugins/eyecandy/themes.lua index 334b485..de7d2d4 100644 --- a/lua/plugins/eyecandy/themes.lua +++ b/lua/plugins/eyecandy/themes.lua @@ -19,7 +19,17 @@ return { }, }, }) - vim.api.nvim_command("colorscheme catppuccin") + --vim.api.nvim_command("colorscheme catppuccin") + end, + }, + + { + "ellisonleao/gruvbox.nvim", + lazy = false, + priority = 1000, + config = function() + require("gruvbox").setup({}) + vim.api.nvim_command("colorscheme gruvbox") end, }, } |