mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 08:53:31 +02:00
add: config transparant background
This commit is contained in:
parent
808891c37b
commit
cc3044f070
5 changed files with 242 additions and 46 deletions
|
@ -214,6 +214,33 @@ if transparent_mode ~= nil then
|
|||
end
|
||||
|
||||
return {
|
||||
-- transparant config
|
||||
{
|
||||
"xiyaowong/transparent.nvim",
|
||||
event = "BufWinEnter",
|
||||
enabled = transparent,
|
||||
cmd = { "TransparentToggle", "TransparentEnable", "TransparentDisable" },
|
||||
config = function()
|
||||
require("transparent").clear_prefix("BufferLine")
|
||||
require("transparent").clear_prefix("Lualine")
|
||||
require("transparent").setup({
|
||||
extra_groups = {},
|
||||
exclude_groups = {
|
||||
-- disable active selection backgroun
|
||||
"CursorLine",
|
||||
"CursorLineNR",
|
||||
"CursorLineSign",
|
||||
"CursorLineFold",
|
||||
"Pmenu",
|
||||
"PmenuSel",
|
||||
"PmenuSbar",
|
||||
"PmenuThumb",
|
||||
"NormalFloat",
|
||||
"FloatBorder",
|
||||
},
|
||||
})
|
||||
end,
|
||||
},
|
||||
-- color scheme
|
||||
{ "luisiacc/gruvbox-baby", lazy = true, enabled = gruvbox },
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue