feat: change theme to ellisonleao/gruvbox.nvim

This commit is contained in:
Matej Janezic 2023-02-19 23:19:01 +01:00
parent 6543c16470
commit 8d807c940e
Signed by: janezicmatej
GPG Key ID: 4298E230ED37B2C0
1 changed files with 11 additions and 13 deletions

View File

@ -1,4 +1,14 @@
return { 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 -- NOTE: First, some plugins that don't require any configuration
-- Git related plugins -- Git related plugins
@ -44,7 +54,7 @@ return {
opts = { opts = {
options = { options = {
icons_enabled = false, icons_enabled = false,
theme = 'onedark', theme = 'gruvbox',
component_separators = '|', component_separators = '|',
section_separators = '', section_separators = '',
}, },
@ -120,16 +130,4 @@ return {
require('neo-tree').setup {} require('neo-tree').setup {}
end, 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,
},
} }