X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=states%2Fvim%2Ffiles%2Fvimrc;h=d645f7886099e255a938c7aca18cb6180237aeff;hb=f4db0c7419d7e352b0ec2fbe9c2d454e5ed99aed;hp=c1c8ab51fa0e5acc0705f27808ca88aae78d9fd4;hpb=6070fd475cfecbf1d0f2864c7be06298e034a9c9;p=max%2Fsaltfiles.git diff --git a/states/vim/files/vimrc b/states/vim/files/vimrc index c1c8ab5..d645f78 100644 --- a/states/vim/files/vimrc +++ b/states/vim/files/vimrc @@ -30,7 +30,6 @@ Plugin 'gu-fan/riv.vim' Plugin 'lepture/vim-jinja' Plugin 'aklt/plantuml-syntax' Plugin 'vim-python/python-syntax' -Plugin 'luochen1990/rainbow' Plugin 'majutsushi/tagbar' Plugin 'heavenshell/vim-pydocstring' Plugin 'altercation/vim-colors-solarized' @@ -69,7 +68,8 @@ let g:syntastic_check_on_open = 1 let g:syntastic_check_on_wq = 1 let g:syntastic_javascript_checkers = ['eslint'] let g:syntastic_python_python_exec = '/usr/bin/python3' -let g:syntastic_python_checkers = ['python3 -m pylint --error-only'] +let g:syntastic_python_checkers = ['pylint'] +let g:syntastic_python_pylint_args = '-E' let g:syntastic_aggregate_errors = 1 " Syntastic C++11 @@ -147,9 +147,6 @@ autocmd FileType python setlocal foldmethod=indent foldnestmax=2 " Paren highlighting hi MatchParen cterm=underline ctermbg=none ctermfg=none -" Rainbow parens -let g:rainbow_active = 1 - " Activate tagbar with F8 nmap :TagbarToggle