Move ale highlight groups to fresh colorscheme

This commit is contained in:
Kenneth Benzie 2018-09-05 19:07:43 +01:00
parent 53c971b802
commit 25c18763bc
2 changed files with 5 additions and 4 deletions

View File

@ -191,6 +191,11 @@ if has('gui_running') || &t_Co == 256
call s:hi('Important', '220', '', 'bold') call s:hi('Important', '220', '', 'bold')
call s:hi('Research', '202', '', 'bold') call s:hi('Research', '202', '', 'bold')
call s:hi('ALEError', '160', '', '')
call s:hi('ALEWarning', '129', '', '')
call s:hi('ALEErrorSign', '160', '233', 'bold')
call s:hi('ALEWarningSign', '129', '233', 'bold')
call s:hi('SyntasticErrorSign', '160', '233', 'bold') call s:hi('SyntasticErrorSign', '160', '233', 'bold')
call s:hi('SyntasticWarningSign', '129', '233', 'bold') call s:hi('SyntasticWarningSign', '129', '233', 'bold')
call s:hi('SyntasticErrorLine', '', '', '') call s:hi('SyntasticErrorLine', '', '', '')

4
vimrc
View File

@ -66,10 +66,6 @@ let g:ale_sign_error = '▸'
let g:ale_sign_warning = '▸' let g:ale_sign_warning = '▸'
let g:ale_echo_msg_format = '[%linter%] %s (%code%)' let g:ale_echo_msg_format = '[%linter%] %s (%code%)'
let g:ale_linters = {'c': [], 'cpp': []} let g:ale_linters = {'c': [], 'cpp': []}
hi link ALEError SyntasticError
hi link ALEWarning SyntasticWarning
hi link ALEErrorSign SyntasticErrorSign
hi link ALEWarningSign SyntasticWarningSign
" git diff in the sign column " git diff in the sign column
Plug 'airblade/vim-gitgutter' Plug 'airblade/vim-gitgutter'