-
|
Here is my return {
{
"folke/tokyonight.nvim",
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
opts = {
transparent = true,
styles = {
sidebars = "transparent",
floats = "transparent",
}
},
config = function()
-- load the colorscheme here
vim.cmd([[colorscheme tokyonight]])
end,
},
}I was expecting a transparent background, after setting |
Beta Was this translation helpful? Give feedback.
Answered by
jsattler
Jul 22, 2025
Replies: 1 comment
-
|
Found the answer myself. return {
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {
transparent = true,
styles = {
sidebars = "transparent",
floats = "transparent",
},
},
config = function(_, opts)
require("tokyonight").setup(opts)
vim.cmd([[colorscheme tokyonight]])
end,
},
}
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jsattler
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Found the answer myself.