mirror of
https://github.com/arkorty/Neolite.git
synced 2026-03-17 16:51:42 +00:00
Changes to be committed:
modified: init.lua
modified: lua/plugins.lua
new file: lua/transparency.lua
21 lines
658 B
Lua
21 lines
658 B
Lua
local ok, transparent = pcall(require, "transparent")
|
|
if not ok then
|
|
return
|
|
end
|
|
|
|
transparent.setup({
|
|
enable = false, -- boolean: enable transparent
|
|
extra_groups = { -- table/string: additional groups that should be cleared
|
|
-- In particular, when you set it to 'all', that means all available groups
|
|
-- example of akinsho/nvim-bufferline.lua
|
|
"BufferLineTabClose",
|
|
"BufferlineBufferSelected",
|
|
"BufferLineFill",
|
|
"BufferLineBackground",
|
|
"BufferLineSeparator",
|
|
"BufferLineIndicatorSelected",
|
|
},
|
|
exclude = {}, -- table: groups you don't want to clear
|
|
ignore_linked_group = true, -- boolean: don't clear a group that links to another group
|
|
})
|