nvim-lualine/lualine.nvim

Question how to not override DAP UI control buttons?

sytranvn opened this issue · 3 comments

I have this lualine config to display file path

    {
      options = {
        icons_enabled = true,
        theme = 'tokyonight',
        component_separators = '|',
        section_separators = '',
      },
      sections = {
        lualine_y = {
          'progress',
          'location'
        },
      },
      winbar = {
        lualine_x = { { 'filename', path = 1 } },
      },
      inactive_winbar = {
        lualine_x = { { 'filename', path = 1 } },
      }
    }

When I debug, the DAP UI buttons are overridden. When I switch window, I can see it flashes then disappears.

Screen.Recording.2024-04-19.at.18.21.07.mov