xiyaowong / transparent.nvim

Remove all background colors to make nvim transparent
821 stars 24 forks source link

Transparency doesn't apply for tokyonight.nvim theme #4

Closed ashtrath closed 2 years ago

ashtrath commented 2 years ago

Transparency doesn't apply with tokyonight.nvim theme when NvimTree opened.

https://user-images.githubusercontent.com/69681505/142169728-c644db3f-61d4-4443-ad64-e6f24a7cc442.mp4

as you can see here.

ashtrath commented 2 years ago

my nvim-transparent config

local transparent = require 'transparent'

transparent.setup({
  enable = true,
  extra_groups = {
    "StatusLineNC",
    "StatusLine",
    "NvimTreeStatusLine"
  },
  exclude = {
    "BufferLineTabClose",
    "BufferlineBufferSelected",
    "BufferLineFill",
    "BufferLineBackground",
    "BufferLineSeparator",
    "BufferLineIndicatorSelected"
  },
})

also exclude options doesn't seems to work

ashtrath commented 2 years ago

pft. i found the issue, i didn't read the theme docs, sorry for this 😅