1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
local transparent_setup, transparent = pcall(require, "transparent")
if not transparent_setup then
print("Error: transparent is not working")
return
end
transparent.setup({ -- Optional, you don't have to run 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",
"CursorLine",
"CursorLineNr",
"StatusLine",
"StatusLineNC",
"EndOfBuffer",
},
extra_groups = {
"NormalFloat", -- floating windows
"NvimTreeNormal", -- nvim tree
}, -- table: additional groups that should be cleared
exclude_groups = {}, -- table: groups you don't want to clear
})
|