summaryrefslogtreecommitdiff
path: root/dot-config/nvim/lua
diff options
context:
space:
mode:
Diffstat (limited to 'dot-config/nvim/lua')
-rw-r--r--dot-config/nvim/lua/plugins/theme.lua23
1 files changed, 22 insertions, 1 deletions
diff --git a/dot-config/nvim/lua/plugins/theme.lua b/dot-config/nvim/lua/plugins/theme.lua
index 1e3e8ad..166c3a9 100644
--- a/dot-config/nvim/lua/plugins/theme.lua
+++ b/dot-config/nvim/lua/plugins/theme.lua
@@ -11,6 +11,15 @@ return {
},
{
+ "sainnhe/everforest",
+ lazy = false,
+ priority = 1000,
+ config = function()
+ vim.g.everforest_transparent_background = 2
+ end,
+ },
+
+ {
"webhooked/kanso.nvim",
lazy = false,
priority = 1000,
@@ -198,9 +207,21 @@ return {
},
{
+ "wtfox/jellybeans.nvim",
+ lazy = false,
+ priority = 1000,
+ opts = {
+ transparent = true,
+ italics = false,
+ bold = false,
+ flat_ui = true, -- toggles "flat UI" for pickers
+ },
+ },
+
+ {
"LazyVim/LazyVim",
opts = {
- colorscheme = "catppuccin-frappe",
+ colorscheme = "jellybeans-default",
},
},
}