aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins')
-rw-r--r--nvim/lua/plugins/colorscheme.lua16
1 files changed, 15 insertions, 1 deletions
diff --git a/nvim/lua/plugins/colorscheme.lua b/nvim/lua/plugins/colorscheme.lua
index 3b10862..fb5815e 100644
--- a/nvim/lua/plugins/colorscheme.lua
+++ b/nvim/lua/plugins/colorscheme.lua
@@ -25,12 +25,26 @@ local colorschemes = {
vim.cmd[[colorscheme tokyonight-night]]
end
},
+ everforest_lua = {
+ 'neanias/everforest-nvim',
+ lazy = false,
+ priority = 1000,
+ config = function ()
+ require("everforest").setup({
+ background = "medium",
+ transparent_background_level = 2
+ })
+ vim.cmd[[highlight! link TroubleNormal Normal]]
+ vim.cmd[[colorscheme everforest"]]
+ end
+ },
everforest = {
'sainnhe/everforest',
lazy = false,
priority = 1000,
config = function()
vim.g.everforest_background = 'hard'
+ vim.g.everforest_enable_italic = 1
vim.g.everforest_transparent_background = 2
vim.cmd[[colorscheme everforest]]
end,
@@ -39,6 +53,6 @@ local colorschemes = {
local colorsProfiles = require("profiles").createProfiles(colorschemes.catppuccin)
-colorsProfiles["nest"] = colorschemes.everforest
+colorsProfiles["nest"] = colorschemes.everforest_lua
return colorsProfiles[HOSTNAME]