From 8e2abf828a736f376f01ce14ae34d1b7fe9bfa8a Mon Sep 17 00:00:00 2001 From: Rokosun <79040025+futureisfoss@users.noreply.github.com> Date: Sat, 8 Mar 2025 09:58:26 +0000 Subject: [PATCH] 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 --- .config/nvim/init.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 6cf6a3ac..a70df274 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -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 h