Created
June 16, 2011 19:01
-
-
Save knowuh/1029967 to your computer and use it in GitHub Desktop.
How to get syntastic vim plugin to be whiny be default.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" add this foo to your vimrc if you want whiny defaults for javascript linting: | |
let g:syntastic_quiet_warnings=0 | |
let g:syntastic_auto_loc_list=1 | |
let g:syntastic_auto_jump=1 | |
let g:syntastic_enable_signs=1 | |
let g:syntastic_jsl_conf="~/.jsl.conf" | |
let g:syntastic_stl_format = '[%E{Err: %fe #%e}%B{, }%W{Warn: %fw #%w}]' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment