From 8d807c940e9df3c139a422242e0aaed53aee7a1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Sun, 19 Feb 2023 23:19:01 +0100 Subject: [PATCH] feat: change theme to ellisonleao/gruvbox.nvim --- lua/plugins/common.lua | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/lua/plugins/common.lua b/lua/plugins/common.lua index 1acd82d..47ed5a6 100644 --- a/lua/plugins/common.lua +++ b/lua/plugins/common.lua @@ -1,4 +1,14 @@ return { + -- NOTE: Theme + { + 'ellisonleao/gruvbox.nvim', + + priority = 1000, + config = function() + vim.cmd.colorscheme 'gruvbox' + end, + }, + -- NOTE: First, some plugins that don't require any configuration -- Git related plugins @@ -44,7 +54,7 @@ return { opts = { options = { icons_enabled = false, - theme = 'onedark', + theme = 'gruvbox', component_separators = '|', section_separators = '', }, @@ -120,16 +130,4 @@ return { require('neo-tree').setup {} end, }, - - -- NOTE: Finally, themes - -- FIX: figure out how to switch between themes more easily - - { -- Theme inspired by Atom - 'navarasu/onedark.nvim', - priority = 1000, - config = function() - vim.cmd.colorscheme 'onedark' - end, - }, - }