vim: let's try out gruvbox
This commit is contained in:
parent
7cbf14e32b
commit
4b6e5c15b0
3 changed files with 15 additions and 11 deletions
14
config/nvim/lua/user/plugins/colorscheme.lua
Normal file
14
config/nvim/lua/user/plugins/colorscheme.lua
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
return {
|
||||||
|
{
|
||||||
|
'fschauen/solarized.nvim',
|
||||||
|
dev = true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'fschauen/gruvbox.nvim',
|
||||||
|
dev = true,
|
||||||
|
config = function ()
|
||||||
|
vim.cmd [[colorscheme gruvbox]]
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
|
@ -158,7 +158,7 @@ local config = function()
|
||||||
icons_enabled = true,
|
icons_enabled = true,
|
||||||
component_separators = { left = '', right = '' },
|
component_separators = { left = '', right = '' },
|
||||||
section_separators = { left = '', right = '' },
|
section_separators = { left = '', right = '' },
|
||||||
theme = 'solarized',
|
theme = 'gruvbox',
|
||||||
},
|
},
|
||||||
|
|
||||||
sections = vim.tbl_extend('force', inactive_sections, {
|
sections = vim.tbl_extend('force', inactive_sections, {
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
return {
|
|
||||||
'fschauen/solarized.nvim',
|
|
||||||
|
|
||||||
dev = true,
|
|
||||||
|
|
||||||
config = function()
|
|
||||||
vim.cmd [[colorscheme solarized]]
|
|
||||||
end,
|
|
||||||
}
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue