Moritz Büttner

Results 3 comments of Moritz Büttner

Hi, I have encountered the same issue. While debugging the stager I noticed, that the HTTP response from ncat was using `http0.9`, which is not allowed by default by `curl`...

I found some old PR in the nvim-navic github repo which might explain it: https://github.com/SmiteshP/nvim-navic/pull/137

`local bg = configs.lualine_bg_color or colors.black` according to readme, by default `lualine_bg_color` is set to nil, so it takes `colors.black`. Changing either `colors.black` to `#44475a` or setting `lualine_bg_color` to `#44475a`...