diff options
| author | Rokosun <79040025+futureisfoss@users.noreply.github.com> | 2025-03-08 09:58:26 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-08 09:58:26 +0000 |
| commit | 8e2abf828a736f376f01ce14ae34d1b7fe9bfa8a (patch) | |
| tree | 8f5c19cd23db72fd0aa13236e932b741d31501d6 /.config/nvim | |
| parent | 70ee0fe03f7231f8b37b229cc1c2066e1b639466 (diff) | |
| download | eibhear-8e2abf828a736f376f01ce14ae34d1b7fe9bfa8a.tar.gz eibhear-8e2abf828a736f376f01ce14ae34d1b7fe9bfa8a.tar.zst eibhear-8e2abf828a736f376f01ce14ae34d1b7fe9bfa8a.zip | |
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
Diffstat (limited to '.config/nvim')
| -rw-r--r-- | .config/nvim/init.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 6cf6a3a..a70df27 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 <C-h> <C-w>h |
