Closed j0of closed 6 months ago
Fixed by adding this to setup:
on_colors = function(colors)
colors.bg_statusline = colors.none -- To check if its working try something like "#ff00ff" instead of colors.none
end,
I kind of have the same problem. I'm trying to set a custom colour for bold text. This is what I have in my lazy.setup()
function now but it doesn't work.
{
"folke/tokyonight.nvim",
lazy = false,
opts = {
on_colors = function(colors)
colors["@markup.strong"] = colors.orange
end
},
config = function()
vim.cmd.colorscheme 'tokyonight-night'
end,
},
Do I need to move this out of lazy.setup()
for it to work?
Did you check docs and existing issues?
Neovim version (nvim -v)
0.9.5
Operating system/version
WSL 2
Describe the bug
In the tokyonight setup function, I have transparent set to true. This makes everything transparent except the middle bit of the lualine.
Steps To Reproduce
Expected Behavior
The background transparency should have also been applied to lualine
Repro