vimrc(airline): enable mixed-indent algo warning

This commit is contained in:
surtur 2022-07-22 19:00:12 +02:00
parent 11319a0fc3
commit d801698f49
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

@ -118,9 +118,14 @@ let g:airline_mode_map = {
\ 'V' : 'V-L',
\ '' : 'V-B',
\ }
" skip displaying fileformat output if the output matches a configured string.
let g:airline#parts#ffenc#skip_expected_string='utf-8[unix]'
" certain number of spaces are allowed after tabs, but not in between.
" this algorithm works well for /** */ style comments in a tab-indented file.
let g:airline#extensions#whitespace#mixed_indent_algo = 1
" ale integration
let g:airline#extensions#ale#enabled = 1
" nrrwrgn integration