vimrc/syntastic.vim

12 lines
473 B
VimL
Raw Normal View History

" configure syntastic, advanced syntax checker, with some reasonable behaviors
"
" always stick detected errors in the location list
let g:syntastic_always_populate_loc_list = 1
" open but only when errors are detected; default closes when errors are cleared
" but doesn't open the list automatically
2021-09-06 20:57:07 +00:00
let g:syntastic_auto_loc_list = 0
" check when first opening a file
2021-09-06 20:57:07 +00:00
let g:syntastic_check_on_open = 0
" don't check on writing and quitting
let g:syntastic_check_on_wq = 0