git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Pfeiffer <coding _ lirion.de> 2022-03-22 08:49:29 +0100
committerHarald Pfeiffer <coding _ lirion.de> 2022-03-22 08:49:29 +0100
commitd20ca3164f6dafa059fb6bfe19eb83653c798eb5 (patch)
tree8e717e49d15aa7e422cb92deb6eb7f14186dace2
parent75a89b5a8b91b447019d636d233edc7edf115b01 (diff)
downloaddotfiles-d20ca3164f6dafa059fb6bfe19eb83653c798eb5.tar.bz2
+ syntastic
-rw-r--r--.vimrc12
1 files changed, 12 insertions, 0 deletions
diff --git a/.vimrc b/.vimrc
index 5b575cf..d547026 100644
--- a/.vimrc
+++ b/.vimrc
@@ -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 = "⚠"