diff --git a/themes/neovim/catppuccin.lua b/themes/neovim/catppuccin.lua index a1cd989..750c2ad 100644 --- a/themes/neovim/catppuccin.lua +++ b/themes/neovim/catppuccin.lua @@ -4,6 +4,7 @@ return { opts = { transparent_background = true, }, + config = require('plugins.commons').set_transparent_bg() }, { "LazyVim/LazyVim", diff --git a/themes/neovim/everforest.lua b/themes/neovim/everforest.lua index 55c78f1..b01157d 100644 --- a/themes/neovim/everforest.lua +++ b/themes/neovim/everforest.lua @@ -6,5 +6,6 @@ return { colorscheme = "everforest", background = "soft", }, + config = require('plugins.commons').set_transparent_bg() }, } diff --git a/themes/neovim/gruvbox.lua b/themes/neovim/gruvbox.lua index edaf0d5..382e0ec 100644 --- a/themes/neovim/gruvbox.lua +++ b/themes/neovim/gruvbox.lua @@ -5,5 +5,6 @@ return { opts = { colorscheme = "gruvbox", }, + config = require('plugins.commons').set_transparent_bg() }, } diff --git a/themes/neovim/kanagawa.lua b/themes/neovim/kanagawa.lua index 2ad2155..c0a3ace 100644 --- a/themes/neovim/kanagawa.lua +++ b/themes/neovim/kanagawa.lua @@ -5,5 +5,6 @@ return { opts = { colorscheme = "kanagawa", }, + config = require('plugins.commons').set_transparent_bg() }, } diff --git a/themes/neovim/nord.lua b/themes/neovim/nord.lua index fc2254e..698a5fe 100644 --- a/themes/neovim/nord.lua +++ b/themes/neovim/nord.lua @@ -5,5 +5,6 @@ return { opts = { colorscheme = "nord", }, + config = require('plugins.commons').set_transparent_bg() }, } diff --git a/themes/neovim/rose-pine.lua b/themes/neovim/rose-pine.lua index 591e8c7..f637267 100644 --- a/themes/neovim/rose-pine.lua +++ b/themes/neovim/rose-pine.lua @@ -5,5 +5,6 @@ return { opts = { colorscheme = "rose-pine-dawn", }, + config = require('plugins.commons').set_transparent_bg() }, } diff --git a/themes/neovim/tokyo-night.lua b/themes/neovim/tokyo-night.lua index d8ea440..f721b32 100644 --- a/themes/neovim/tokyo-night.lua +++ b/themes/neovim/tokyo-night.lua @@ -13,6 +13,7 @@ return { sidebars = "transparent", floats = "transparent", }, + config = require('plugins.commons').set_transparent_bg() }, }, }