xiyaowong/transparent.nvim

string ^ in lualine when TransparentEnable?

Closed this issue · 1 comments

when i run TransparentEnable, string ^ has been shown in lualine, is any way to hide ?
image

I had added the exclude_groups to solve this problem.

  -- transparent background
  {
    'xiyaowong/transparent.nvim',
    config = function()
      require('transparent').setup({
        exclude_groups = {
          'StatusLine',
          'StatusLineNC',
        },
      })
    end,
  },