demo transparent nvim
This commit is contained in:
parent
d9902eb0e6
commit
a6b6aa15b3
2 changed files with 19 additions and 1 deletions
15
home/private_dot_config/lvim/lua/config/nvim-transparent.lua
Normal file
15
home/private_dot_config/lvim/lua/config/nvim-transparent.lua
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
require("transparent").setup({
|
||||||
|
enable = true, -- 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
|
||||||
|
})
|
|
@ -25,7 +25,10 @@ lvim.plugins = {
|
||||||
{ "vim-pandoc/vim-pandoc-syntax" },
|
{ "vim-pandoc/vim-pandoc-syntax" },
|
||||||
},
|
},
|
||||||
ft = { "quarto" },
|
ft = { "quarto" },
|
||||||
}
|
},
|
||||||
|
{ 'xiyaowong/nvim-transparent',
|
||||||
|
config = p 'nvim-transparent';
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
-- default plugins settings
|
-- default plugins settings
|
||||||
|
|
Loading…
Reference in a new issue