update theme to everforest
This commit is contained in:
parent
e00ef683fa
commit
39e9fb0a24
2 changed files with 21 additions and 7 deletions
|
|
@ -1,7 +1,21 @@
|
|||
return {
|
||||
'catppuccin/nvim',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'catppuccin'
|
||||
end,
|
||||
local M = {
|
||||
"neanias/everforest-nvim",
|
||||
lazy = false,
|
||||
priority = 1000, -- make sure to load this before all the other start plugins
|
||||
}
|
||||
|
||||
function M.config()
|
||||
local everforest = require("everforest")
|
||||
everforest.setup({
|
||||
background = "hard",
|
||||
transparent_background_level = 0,
|
||||
italics = true,
|
||||
disable_italic_comments = false,
|
||||
on_highlights = function(hl, _)
|
||||
hl["@string.special.symbol.ruby"] = { link = "@field" }
|
||||
end,
|
||||
})
|
||||
everforest.load()
|
||||
end
|
||||
|
||||
return M
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue