From 404f5169847c23fbb468daab9c2a2353372851db Mon Sep 17 00:00:00 2001 From: Andrzej Stepien Date: Mon, 18 Mar 2024 14:06:48 +0100 Subject: [PATCH] add gruvbox --- lua/plugins/themes.lua | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/lua/plugins/themes.lua b/lua/plugins/themes.lua index cb5a794..41e6925 100644 --- a/lua/plugins/themes.lua +++ b/lua/plugins/themes.lua @@ -1,11 +1,14 @@ return { - "rose-pine/neovim", - name = "rose-pine", - priority = 1000, - init = function() - -- Load the colorscheme here. - -- Like many other themes, this one has different styles, and you could load - -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme("rose-pine-main") - end, + { + "rose-pine/neovim", + name = "rose-pine", + priority = 1000, + init = function() + -- Load the colorscheme here. + -- Like many other themes, this one has different styles, and you could load + -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. + vim.cmd.colorscheme("rose-pine-main") + end, + }, + { "ellisonleao/gruvbox.nvim", priority = 1000, config = true, opts = ... }, }