Switch to everforest

This commit is contained in:
tommconley 2024-10-05 09:30:13 -07:00
parent 7380e89046
commit c4273ee232
1 changed files with 14 additions and 14 deletions

View File

@ -827,26 +827,26 @@ require('lazy').setup({
-- end,
-- },
-- {
-- 'sainnhe/everforest',
-- priority = 1000,
-- init = function()
-- vim.g.everforest_enable_italic = true
-- vim.g.everforest_background = 'hard'
-- vim.cmd.colorscheme 'everforest'
-- end,
-- },
{
'sainnhe/gruvbox-material',
'sainnhe/everforest',
priority = 1000,
init = function()
vim.g.gruvbox_material_enable_italic = true
vim.g.gruvbox_material_background = 'hard'
vim.cmd.colorscheme 'gruvbox-material'
vim.g.everforest_enable_italic = true
vim.g.everforest_background = 'hard'
vim.cmd.colorscheme 'everforest'
end,
},
-- {
-- 'sainnhe/gruvbox-material',
-- priority = 1000,
-- init = function()
-- vim.g.gruvbox_material_enable_italic = true
-- vim.g.gruvbox_material_background = 'hard'
-- vim.cmd.colorscheme 'gruvbox-material'
-- end,
-- },
-- Highlight todo, notes, etc in comments
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },