mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
18 lines
432 B
Lua
18 lines
432 B
Lua
-- https://github.com/xiyaowong/nvim-transparent
|
|
require("transparent").setup({
|
|
enable = true,
|
|
extra_groups = {
|
|
"BufferLineBackground",
|
|
"BufferLineFill",
|
|
"BufferLineIndicatorSelected",
|
|
"BufferLineSeparator",
|
|
"BufferLineTabClose",
|
|
"BufferlineBufferSelected",
|
|
"IndentBlanklineIndent1",
|
|
"IndentBlanklineIndent2",
|
|
"NvimTreeNormal",
|
|
"TelescopeNormal",
|
|
},
|
|
exclude = {}, -- table: groups you don't want to clear
|
|
})
|