Moving to individual plugin files for lazy
Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
@@ -1,47 +1,49 @@
|
||||
local status, transparent = pcall(require, "transparent")
|
||||
if not status then
|
||||
return
|
||||
end
|
||||
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 = {},
|
||||
})
|
||||
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,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user