aboutsummaryrefslogtreecommitdiff
path: root/vimrc-full
diff options
context:
space:
mode:
Diffstat (limited to 'vimrc-full')
-rw-r--r--vimrc-full48
1 files changed, 26 insertions, 22 deletions
diff --git a/vimrc-full b/vimrc-full
index 6ff6d33..7c7f1cc 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -891,30 +891,34 @@ if has("python")
891 891
892 892
893 " SYNTASTIC: ========================================================================================================= 893 " SYNTASTIC: =========================================================================================================
894 if has('nvim') 894 if has('nvim')
895 Plug 'w0rp/ale' 895 Plug 'w0rp/ale'
896 else 896 let g:ale_sign_error = ''
897 let g:ale_sign_style_error = ''
898 let g:ale_sign_info = ''
899 let ale_sign_warning = ''
900 else
897 901
898 902
899 Plug 'scrooloose/syntastic' 903 Plug 'scrooloose/syntastic'
900 set statusline+=%#warningmsg# 904 set statusline+=%#warningmsg#
901 set statusline+=%{SyntasticStatuslineFlag()} 905 set statusline+=%{SyntasticStatuslineFlag()}
902 let g:LatexBox_latexmk_preview_continuously = 1 906 let g:LatexBox_latexmk_preview_continuously = 1
903 let g:LatexBox_viewer = "evince" 907 let g:LatexBox_viewer = "evince"
904 let g:syntastic_always_populate_loc_list = 1 908 let g:syntastic_always_populate_loc_list = 1
905 let g:syntastic_auto_loc_list = 0 909 let g:syntastic_auto_loc_list = 0
906 let g:syntastic_check_on_open = 1 910 let g:syntastic_check_on_open = 1
907 let g:syntastic_check_on_wq = 0 911 let g:syntastic_check_on_wq = 0
908 " let g:syntastic_quiet_messages = {"type":"style"} 912 " let g:syntastic_quiet_messages = {"type":"style"}
909 " 913 "
910 " E221: multiple spaces before Operator 914 " E221: multiple spaces before Operator
911 let g:syntastic_python_flake8_args = '--max-complexity=10 --max-line-length=120 --exclude venv --doctests --exit-zero --ignore=E221' 915 let g:syntastic_python_flake8_args = '--max-complexity=10 --max-line-length=120 --exclude venv --doctests --exit-zero --ignore=E221'
912 " filter ( = do not display) style/formatting errors and warnings 916 " filter ( = do not display) style/formatting errors and warnings
913 let g:syntastic_error_symbol = '✖' 917 let g:syntastic_error_symbol = '✖'
914 let g:syntastic_style_error_symbol = '✗' 918 let g:syntastic_style_error_symbol = '✗'
915 let g:syntastic_warning_symbol = '➔' 919 let g:syntastic_warning_symbol = '➔'
916 let g:syntastic_style_warning_symbol = '≈' 920 let g:syntastic_style_warning_symbol = '≈'
917 endif 921 endif
918 922
919 " JEDI: ============================================================================================================== 923 " JEDI: ==============================================================================================================
920 Plug 'davidhalter/jedi-vim' " jedi gets used to display python function signatures 924 Plug 'davidhalter/jedi-vim' " jedi gets used to display python function signatures
..