Lualine, unwanted white corner

Hey, how can I get rid of theses tiny white “corner” on the left side?
Capture d’écran 2022-07-28 à 23.34.56
Here is my configuration:

   local colors = {
    blue   = '#48898c',
    cyan   = '#79dac8',
    black  = '#141414',
    white  = '#c6c6c6',
    red    = '#ff5189',
    violet = '#b16286',
    grey   = '#303030',
    orange = "#e07016",
}

require('lualine').setup {
    options = {
        theme = {
            normal = {
                a = { fg = colors.black, bg = colors.orange },
                b = { fg = colors.white, bg = colors.grey },
                c = { fg = colors.black, bg = colors.black },
            },

            insert = { a = { fg = colors.black, bg = colors.blue } },
            visual = { a = { fg = colors.black, bg = colors.violet } },
            replace = { a = { fg = colors.black, bg = colors.red } },

            inactive = {
                a = { fg = colors.white, bg = colors.black },
                b = { fg = colors.white, bg = colors.black },
                c = { fg = colors.black, bg = colors.black },
            },
            component_separators = '|',
            section_separators = { left = '', right = '' },
        },
        sections = {
            lualine_a = {
                { 'mode', separator = { left = '' }, right_padding = 2 },
            },
            lualine_b = { 'filename', 'branch' },
            lualine_c = { 'fileformat' },
            lualine_x = {},
            lualine_y = { 'filetype', 'progress' },
            lualine_z = {
                { 'location', separator = { right = '' }, left_padding = 2 },
            },
        },
        inactive_sections = {
            lualine_a = { 'filename' },
            lualine_b = {},
            lualine_c = {},
            lualine_x = {},
            lualine_y = {},
            lualine_z = { 'location' },
        },
        tabline = {},
        extensions = {},
    }
}

Thank you very much!

Link StatusLine and StatusLineNC highlight groups to Normal

:hi! link StatusLine Normal
:hi! link StatusLineNC Normal
1 Like