From b4ef88d28ce8d7e99d47d5c741cd0f9889e75e47 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Thu, 21 Jul 2016 20:54:06 +0100 Subject: [PATCH] Add syntastic vim plugin --- vimrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/vimrc b/vimrc index a483b03..5833131 100644 --- a/vimrc +++ b/vimrc @@ -165,6 +165,13 @@ let g:markdown_fenced_languages=['cpp', 'c', 'cmake', 'sh', 'vim', 'python'] " SimplyFold - python folding Plug 'tmhedberg/SimpylFold' +" syntastic - syntax checker +Plug 'scrooloose/syntastic' +let g:syntastic_always_populate_loc_list = 1 +let g:syntastic_check_on_open = 1 +let g:syntastic_check_on_wq = 0 +let g:syntastic_python_checkers = ['pylint'] + " Syntax checking for python Plug 'nvie/vim-flake8', {'for': ['python']}