Change theme to gruvbox (#4)

This is the flavour of the month
This commit is contained in:
Terence Ponce 2023-04-03 17:31:53 +01:00 committed by GitHub
parent a8a4bc2b84
commit a3ee26ebf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View File

@ -112,14 +112,6 @@ require('lazy').setup({
},
},
{ -- Theme inspired by Atom
'navarasu/onedark.nvim',
priority = 1000,
config = function()
vim.cmd.colorscheme 'onedark'
end,
},
{ -- Set lualine as statusline
'nvim-lualine/lualine.nvim',
-- See `:help lualine.txt`

View File

@ -0,0 +1,8 @@
return {
'ellisonleao/gruvbox.nvim',
priority = 1000,
config = function()
vim.cmd.colorscheme 'gruvbox'
vim.o.background = 'dark'
end,
}