xiyaowong / transparent.nvim

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

string ^ in lualine when TransparentEnable? #58

Closed moecasts closed 8 months ago

moecasts commented 8 months ago

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

image
moecasts commented 8 months ago

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,
  },