Closed sebalfaro closed 5 months ago
Hello, I'll be glad to help you.
vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' })
.I hope this helps, if you have any further problems please don't hesitate to open a question. Best regards
Here is my configuration file for the transparent.nvim plugin
local M = {
'xiyaowong/nvim-transparent'
}
function M.config()
local status, transparent = pcall(require, 'transparent')
if (not status) then return end
transparent.setup({
extra_groups = { -- table/string: additional groups that should be cleared
--telescope.nvim
"FloatBorder",
"TelescopeNormal",
--Cmp.nvim
"Pmenu",
"Float",
"NormalFloat",
-- nvim-bufferline.lua
"BufferLineFill",
"BufferLineBackground",
},
exclude_groups = {}, -- table: groups you don't want to clear
})
end
return M
Here is my configuration file for the transparent.nvim plugin
local M = { 'xiyaowong/nvim-transparent' } function M.config() local status, transparent = pcall(require, 'transparent') if (not status) then return end transparent.setup({ extra_groups = { -- table/string: additional groups that should be cleared --telescope.nvim "FloatBorder", "TelescopeNormal", --Cmp.nvim "Pmenu", "Float", "NormalFloat", -- nvim-bufferline.lua "BufferLineFill", "BufferLineBackground", }, exclude_groups = {}, -- table: groups you don't want to clear }) end return M
Working on my end, thank you!!
Hi there, i wanted to set the background and use the transparent one that you have in this image, how do you do that? Thanks!!