Improve YouCompleteMe/syntastic error/warning symbols

This commit is contained in:
Kenneth Benzie 2016-11-19 17:37:03 +00:00
parent f6302d03bd
commit 7623fc8706

6
vimrc
View File

@ -25,8 +25,8 @@ if !platform#is_windows()
let g:ycm_seed_identifiers_with_syntax = 1
let g:ycm_autoclose_preview_window_after_insertion = 1
let g:ycm_always_populate_location_list = 1
let g:ycm_error_symbol="-▸"
let g:ycm_warning_symbol="-▸"
let g:ycm_error_symbol = '▸'
let g:ycm_warning_symbol = '▸'
endif
if has('python')
" ultisnips - snippet engine
@ -43,6 +43,8 @@ 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 = '▸'
" git diff in the sign column
Plug 'airblade/vim-gitgutter'