Nvim: add missing files for various plugins

This commit is contained in:
Robert Kmieć
2023-08-17 23:43:39 +02:00
parent 0db7f3a9c2
commit 89b4343ca1
10 changed files with 274 additions and 86 deletions

View File

@@ -0,0 +1,16 @@
return {
"xiyaowong/transparent.nvim",
config = function()
require("transparent").setup({
groups = { -- table: default 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 = {}, -- table: additional groups that should be cleared
exclude_groups = {}, -- table: groups you don't want to clear
})
end,
cmd = {"TransparentEnable", "TransparentDisable", "TransparentToggle" },
}