vim: let's try out gruvbox

This commit is contained in:
Fernando Schauenburg 2023-07-22 00:58:06 +02:00
parent 7cbf14e32b
commit 4b6e5c15b0
3 changed files with 15 additions and 11 deletions

View file

@ -0,0 +1,14 @@
return {
{
'fschauen/solarized.nvim',
dev = true,
},
{
'fschauen/gruvbox.nvim',
dev = true,
config = function ()
vim.cmd [[colorscheme gruvbox]]
end,
},
}

View file

@ -158,7 +158,7 @@ local config = function()
icons_enabled = true,
component_separators = { left = '', right = '' },
section_separators = { left = '', right = '' },
theme = 'solarized',
theme = 'gruvbox',
},
sections = vim.tbl_extend('force', inactive_sections, {

View file

@ -1,10 +0,0 @@
return {
'fschauen/solarized.nvim',
dev = true,
config = function()
vim.cmd [[colorscheme solarized]]
end,
}