From 96a6c3b3a846cf7add5f1785e4d29acca9f4bcd7 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Mon, 3 Aug 2015 12:58:51 +0200 Subject: [PATCH] Don't start linting on opening of vim; unicode signs for warnings --- .vimrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 2dde082..20447d6 100644 --- a/.vimrc +++ b/.vimrc @@ -106,9 +106,12 @@ 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_open = 0 let g:syntastic_check_on_wq = 0 +let g:syntastic_error_symbol = '✗' +let g:syntastic_warning_symbol = '⚠' + " No silly 80-char line limit. Sorry pep-8. Also, Django support. Disable 'invalid name', 'missing docstring' let g:syntastic_python_pylint_post_args="--max-line-length=120 --load-plugins pylint_django -d C0103,C0111"