xiyaowong / transparent.nvim

Remove all background colors to make nvim transparent
806 stars 23 forks source link

failed to disable transparent by TransparentDisable #51

Closed runninghai closed 1 year ago

runninghai commented 1 year ago
-- install with lazyvim
{
    'xiyaowong/transparent.nvim',
}

--my config
require("transparent").setup({
  extra_groups = {'NvimTreeNormal'}, -- table: additional groups that should be cleared
  exclude_groups = {}, -- table: groups you don't want to clear
})

problem: I can't close the transparent with TransparentDisable or TransparentToggle

image

xiyaowong commented 1 year ago

I find this in your nvim config. https://github.com/runninghai/nvim/blob/b99f5b75b8a477f1004054e124a8bff9b538359d/lua/plugin/dracula.lua#L31

runninghai commented 1 year ago

thanks, it works!