53 lines
1.4 KiB
Lua
53 lines
1.4 KiB
Lua
--- @type LazyPluginSpec
|
|
return {
|
|
"xiyaowong/transparent.nvim",
|
|
config = function()
|
|
local transparent = require("transparent")
|
|
|
|
transparent.setup({
|
|
groups = {
|
|
"Normal",
|
|
"NormalNC",
|
|
"FloatBorder",
|
|
"Comment",
|
|
"Constant",
|
|
"Special",
|
|
"Identifier",
|
|
"Statement",
|
|
"PreProc",
|
|
"Type",
|
|
"Underlined",
|
|
"Todo",
|
|
"String",
|
|
"Function",
|
|
"Conditional",
|
|
"Repeat",
|
|
"Operator",
|
|
"Structure",
|
|
"LineNr",
|
|
"NonText",
|
|
"SignColumn",
|
|
"CursorLineNr",
|
|
"EndOfBuffer",
|
|
},
|
|
extra_groups = {
|
|
"NormalSB",
|
|
"barbecue_normal",
|
|
-- "NvimTreeNormal",
|
|
-- "NvimTreeNormalNC",
|
|
-- "NvimTreeNormalSB",
|
|
"Folded",
|
|
"NonText",
|
|
"SpecialKey",
|
|
"VertSplit",
|
|
"EndOfBuffer",
|
|
"SignColumn",
|
|
-- "BufferLineFill",
|
|
-- "BufferLineBackground",
|
|
-- "BufferLineBufferSelected",
|
|
},
|
|
exclude_groups = {},
|
|
})
|
|
end,
|
|
}
|