Replace syntastic with ale

This commit is contained in:
Kenneth Benzie 2017-02-06 11:44:00 +00:00
parent eeca17ad49
commit 4038e95d4f

15
vimrc
View File

@ -37,14 +37,13 @@ Plug 'richq/vim-cmake-completion', {'for': ['cmake']}
" vimomni - Completion for vimscript
Plug 'vim-scripts/vimomni', {'for': ['vim']}
" syntastic - syntax checker
Plug 'vim-syntastic/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']
let g:syntastic_error_symbol = '▸'
let g:syntastic_warning_symbol = '▸'
" ale - Asynchronous Lint Engine
Plug 'w0rp/ale'
let g:ale_sign_error = '▸'
let g:ale_sign_warning = '▸'
let g:ale_linters = {'c': [], 'cpp': []}
hi link ALEErrorSign SyntasticErrorSign
hi link ALEWarningSign SyntasticWarningSign
" git diff in the sign column
Plug 'airblade/vim-gitgutter'