summaryrefslogtreecommitdiff
path: root/dot-config/nvim/lua
diff options
context:
space:
mode:
authorJosé Juan Loeza Sierra <jj@xz6ze.com>2025-11-02 14:37:15 -0800
committerJosé Juan Loeza Sierra <jj@xz6ze.com>2025-11-02 14:40:24 -0800
commit98bb036ce19b0fef2cde3e5cad5e361bc36dc3be (patch)
treead742a5400cb508ab0d2ec1c12ae280f216fe519 /dot-config/nvim/lua
parent8957b81b76cd13c15bdc0f14fdf3a27271b0f69e (diff)
add more colorschemes and switch to jellybeans
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",
},
},
}