diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2024-08-17 02:39:30 -0400 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2024-08-17 02:39:30 -0400 |
| commit | 0089c3d186cd54de4827b58e43f3ae9e0255d55f (patch) | |
| tree | 2d6cc24c27a504c8278f9efea4757d60dc614863 /nvim | |
| parent | 14e2b1ad79e00dd2c3cfc3d0acec3cd2aacf24e4 (diff) | |
added everforest-nvim colorscheme
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/lua/plugins/colorscheme.lua | 16 |
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] |
