-
I tried using https://github.com/sainnhe/gruvbox-material and set it's transparency mode: {
"sainnhe/gruvbox-material",
config = function()
vim.g.gruvbox_material_enable_italic = true
vim.g.gruvbox_material_transparent_background = 2
end,
} It seems that this theme supports terminal transparency, which works when launching |
Beta Was this translation helpful? Give feedback.
Answered by
r-darwish
Jan 14, 2025
Replies: 1 comment
-
local function set_normal_float_highlight()
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "NONE" })
end
vim.api.nvim_create_autocmd("ColorScheme", {
pattern = "*",
callback = set_normal_float_highlight,
}) This fixes it. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
r-darwish
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This fixes it.