This is working in most themes I have installed except some it is ignoring this setting. As an example:
return {
-- Colorschemes
{
"marko-cerovac/material.nvim",
"navarasu/onedark.nvim",
},
-- Themery color switcher
{
"zaldih/themery.nvim",
lazy = false,
config = function()
require("themery").setup({
themes = {
{
name = "Material Deep Ocean",
colorscheme = "material",
before = [[
vim.g.material_style = "deep ocean"
]],
},
{
name = "OneDark Deep",
colorscheme = "onedark",
before = [[
style = 'deep'
]],
},
},
globalBefore = [[
transparent = true
styles = {
sidebars = "transparent",
floats = "transparent",
}
]],
})
end,
},
}
This is working in most themes I have installed except some it is ignoring this setting. As an example:
transparent = true(ignores). Yes I have tried re-iterating this in the colorscheme's local Before.Here is my config for this: