diff options
author | mail_redacted_for_web | 2022-03-22 08:49:29 +0100 |
---|---|---|
committer | mail_redacted_for_web | 2022-03-22 08:49:29 +0100 |
commit | d20ca3164f6dafa059fb6bfe19eb83653c798eb5 (patch) | |
tree | 8e717e49d15aa7e422cb92deb6eb7f14186dace2 /.vimrc | |
parent | 75a89b5a8b91b447019d636d233edc7edf115b01 (diff) | |
download | dotfiles-d20ca3164f6dafa059fb6bfe19eb83653c798eb5.tar.bz2 |
+ syntastic
Diffstat (limited to '.vimrc')
-rw-r--r-- | .vimrc | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -53,3 +53,15 @@ let g:airline_symbols.paste = '∥' let g:airline_symbols.spell = 'Ꞩ' let g:airline_symbols.notexists = 'Ɇ' let g:airline_symbols.whitespace = 'Ξ' + +let airline#extensions#syntastic#enabled = 1 +let g:syntastic_python_checkers = ['pylint'] +set statusline+=%#warningmsg# +set statusline+=%{SyntasticStatuslineFlag()} +set statusline+=%* +let g:syntastic_always_populate_loc_list = 1 +let g:syntastic_auto_loc_list = 1 +let g:syntastic_check_on_open = 1 +let g:syntastic_check_on_wq = 0 +let g:syntastic_error_symbol = "✗" +let g:syntastic_warning_symbol = "⚠" |