Use vim-airline characters that work with more fonts.
David Blume

David Blume commited on 2020-07-18 23:25:20
Showing 1 changed files, with 5 additions and 0 deletions.

... ...
@@ -325,6 +325,11 @@ let g:netrw_sort_sequence = '[\/]$,*'
325 325
 
326 326
 " When using vim-airline
327 327
 let g:airline_powerline_fonts = 1
328
+if !exists('g:airline_symbols')
329
+    let g:airline_symbols = {}
330
+endif
331
+let g:airline_symbols.whitespace = '✖'
332
+let g:airline_symbols.linenr = 'Ξ'
328 333
 let g:airline_theme = 'powerlineish'
329 334
 let g:airline#extensions#wordcount#enabled = 0
330 335
 " let g:airline_exclude_filetypes = []
331 336