From b5a701040e0bb854ddafa9a2c9c82796e6ba9775 Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Wed, 7 May 2025 23:55:57 -0400 Subject: [PATCH] transparent bg --- lua/plugins/colorscheme.lua | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua index 1d7e080..d1a8806 100755 --- a/lua/plugins/colorscheme.lua +++ b/lua/plugins/colorscheme.lua @@ -1,17 +1,26 @@ return { { "ellisonleao/gruvbox.nvim" }, - { "catppuccin/nvim", - name = "catppuccin", - priority = 1000, - opts = { flavour = "mocha", - --transparent_background = true, - }, + { "neanias/everforest-nvim", name = "everforest", opts = { transparent_background = true } }, + { + "catppuccin/nvim", + name = "catppuccin", + priority = 1000, + opts = { flavour = "mocha", transparent_background = true }, + }, + { + "folke/tokyonight.nvim", + lazy = false, + priority = 1000, + opts = { + transparent = true, + }, }, -- Configure LazyVim to load gruvbox { "LazyVim/LazyVim", opts = { + -- colorscheme = "tokyonight-moon", colorscheme = "catppuccin", }, - } + }, }