Add everforest theme
This commit is contained in:
parent
fee2dd90cb
commit
f94c94226f
@ -93,6 +93,25 @@ elseif fileContent == "monochrome" then
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
elseif fileContent == "forest" then
|
||||||
|
colorscheme = {
|
||||||
|
"neanias/everforest-nvim",
|
||||||
|
version = false,
|
||||||
|
lazy = false,
|
||||||
|
priority = 1000, -- make sure to load this before all the other start plugins
|
||||||
|
-- Optional; default configuration will be used if setup isn't called.
|
||||||
|
config = function()
|
||||||
|
vim.o.termguicolors = true
|
||||||
|
require("everforest").setup({
|
||||||
|
background = "hard",
|
||||||
|
italics = true,
|
||||||
|
ui_contrast = "high",
|
||||||
|
dim_inactive_windows = true,
|
||||||
|
})
|
||||||
|
|
||||||
|
vim.cmd.colorscheme("everforest")
|
||||||
|
end,
|
||||||
|
}
|
||||||
elseif fileContent == "solarized" then
|
elseif fileContent == "solarized" then
|
||||||
colorscheme = {
|
colorscheme = {
|
||||||
'maxmx03/solarized.nvim',
|
'maxmx03/solarized.nvim',
|
||||||
|
Loading…
Reference in New Issue
Block a user