Make all floating windows fully transparent (kudos to 0xfraso on github)

This commit is contained in:
2024-11-28 00:30:32 +09:00
parent 39130ff54d
commit eae91f60d8
+20 -3
View File
@@ -2,9 +2,26 @@ return {
"xiyaowong/transparent.nvim",
config = function ()
require("transparent").setup({
extra_groups = {
"NormalFloat", -- plugins which have float panel such as Lazy, Mason, LspInfo
"NvimTreeNormal" -- NvimTree
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