Files
neovim-config/lua/taken/plugins/transparent.lua
Taken 9556024c93 Added types
Signed-off-by: Taken <taken@mairimashita.org>
2024-03-17 16:34:11 +01:00

51 lines
1.3 KiB
Lua

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