Fix UI rendering issues in neovim (#1455)

Neovim started showing UI rendering issues after the latest update. Some of the Unicode characters used in the vim-airline plugin were found to be the cause, this commit aims to solve the issue by removing those characters.

Check this issue for more details - https://github.com/vim-airline/vim-airline/issues/2704
This commit is contained in:
Rokosun 2025-03-08 09:58:26 +00:00 committed by GitHub
parent 70ee0fe03f
commit 8e2abf828a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -63,7 +63,8 @@ colorscheme vim
endif
let g:airline_symbols.colnr = ' C:'
let g:airline_symbols.linenr = ' L:'
let g:airline_symbols.maxlinenr = '☰ '
let g:airline_symbols.maxlinenr = ' '
let g:airline#extensions#whitespace#symbol = '!'
" Shortcutting split navigation, saving a keypress:
map <C-h> <C-w>h