After switching over to vim-atomic I noticed my statusline (through vim-airline and vim-tree.lua) was littered with ^ characters wherever a space ' ' should be, which made reading the status line rather difficult. Thanks to this issue I found that is StatusLine and StatusLineNC are set to the same value as they are here then vim's default functionality is to use ^^^ in the current status line
*hl-StatusLine*
StatusLine Status line of current [window](https://neovim.io/doc/user/windows.html#window).
*hl-StatusLineNC*
StatusLineNC Status lines of not-current [windows](https://neovim.io/doc/user/windows.html#windows).
Note: If this is equal to "StatusLine", Vim will use "^^^" in
the status line of the current [window](https://neovim.io/doc/user/windows.html#window).
Is there a way to change the StatusLineNC to be in line with the atomic color theme but different than StatusLine so that ' ' is used again rather than ^^^?
After switching over to vim-atomic I noticed my statusline (through
vim-airline
andvim-tree.lua
) was littered with^
characters wherever a space' '
should be, which made reading the status line rather difficult. Thanks to this issue I found that isStatusLine
andStatusLineNC
are set to the same value as they are here then vim's default functionality is to use^^^
in the current status linenvim docs on highlighting and the StatusLine.
Is there a way to change the
StatusLineNC
to be in line with theatomic
color theme but different thanStatusLine
so that' '
is used again rather than^^^
?