29 lines
862 B
Lua
29 lines
862 B
Lua
return {
|
|
"xiyaowong/transparent.nvim",
|
|
config = function ()
|
|
require("transparent").setup({
|
|
extra_groups = { -- table/string: additional groups that should be cleared
|
|
"BufferLineTabClose",
|
|
"BufferlineBufferSelected",
|
|
"BufferLineFill",
|
|
"BufferLineBackground",
|
|
"BufferLineSeparator",
|
|
"BufferLineIndicatorSelected",
|
|
|
|
"IndentBlanklineChar",
|
|
|
|
-- make floating windows transparent
|
|
"LspFloatWinNormal",
|
|
"Normal",
|
|
"NormalFloat",
|
|
"FloatBorder",
|
|
"TelescopeNormal",
|
|
"TelescopeBorder",
|
|
"TelescopePromptBorder",
|
|
"SagaBorder",
|
|
"SagaNormal",
|
|
},
|
|
})
|
|
end
|
|
}
|