Open ghost opened 8 months ago
With solution
Without solution
Thank you for the detailed explanation. I'll look this weekend 👍🏻
Although I feel like its a colorscheme loading issue. If your using lazy.nvim (package manager) check with event="Colorscheme"
or priority
@tamton-aquib Yeah sure! Take your time...
I am fairly certain it isnt... I have tried calling the functions manually... event Colorscheme doesnt work and my colorscheme (navarasu/onedark) is already set to priority 1000 which is the highest in my config..
Cheers! :)
Problem
: The statusbar uses nvim default statusbar highlight colours on start and only uses defined colors when a editable buffer is openedPossible Explanation
: Theget_statusline()
function in the staline.nvim file contains an if statement at the beginning which might be barring the colours to set up on non editable buffers like the dashboard, netrw or helpPossible Solution
: Move thecall_highlights()
function call above the if statement in the functionSolution solves problem
: YesSide effects
: Unknown