Make all floating windows fully transparent (kudos to 0xfraso on github)
This commit is contained in:
@@ -2,9 +2,26 @@ return {
|
|||||||
"xiyaowong/transparent.nvim",
|
"xiyaowong/transparent.nvim",
|
||||||
config = function ()
|
config = function ()
|
||||||
require("transparent").setup({
|
require("transparent").setup({
|
||||||
extra_groups = {
|
extra_groups = { -- table/string: additional groups that should be cleared
|
||||||
"NormalFloat", -- plugins which have float panel such as Lazy, Mason, LspInfo
|
"BufferLineTabClose",
|
||||||
"NvimTreeNormal" -- NvimTree
|
"BufferlineBufferSelected",
|
||||||
|
"BufferLineFill",
|
||||||
|
"BufferLineBackground",
|
||||||
|
"BufferLineSeparator",
|
||||||
|
"BufferLineIndicatorSelected",
|
||||||
|
|
||||||
|
"IndentBlanklineChar",
|
||||||
|
|
||||||
|
-- make floating windows transparent
|
||||||
|
"LspFloatWinNormal",
|
||||||
|
"Normal",
|
||||||
|
"NormalFloat",
|
||||||
|
"FloatBorder",
|
||||||
|
"TelescopeNormal",
|
||||||
|
"TelescopeBorder",
|
||||||
|
"TelescopePromptBorder",
|
||||||
|
"SagaBorder",
|
||||||
|
"SagaNormal",
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user