Added Transparent.nvim plugin, disable Shade.nvim plugin (conflict)

This commit is contained in:
2024-11-28 00:21:35 +09:00
parent 13c1ad6d04
commit 2c05396209
3 changed files with 36 additions and 9 deletions
+11
View File
@@ -0,0 +1,11 @@
return {
"xiyaowong/transparent.nvim",
config = function ()
require("transparent").setup({
extra_groups = {
"NormalFloat", -- plugins which have float panel such as Lazy, Mason, LspInfo
"NvimTreeNormal" -- NvimTree
},
})
end
}