[nvim] change warning/error signs

This commit is contained in:
Dmytro Meleshko 2019-06-28 01:28:22 +03:00
parent a3e88edfbf
commit 7eeb9e41d2
1 changed files with 6 additions and 1 deletions

View File

@ -75,5 +75,10 @@ endif
" }}}
call coc#add_extension('coc-snippets')
call coc#config('diagnostic', { 'virtualText': v:true, 'enableMessage': 'jump' })
call coc#config('diagnostic', {
\ 'virtualText': v:true,
\ 'enableMessage': 'jump',
\ 'errorSign': 'XX',
\ 'warningSign': '!!',
\ })
" }}}