2019-08-25 18:59:39 +02:00
|
|
|
let g:ale_completion_enabled = 1
|
|
|
|
let g:ale_sign_error = "✗"
|
|
|
|
let g:ale_sign_warning = "⚠"
|
|
|
|
|
2019-08-26 00:21:16 +02:00
|
|
|
" Enable warnings about trailing whitespace for all files.
|
|
|
|
let b:ale_warn_about_trailing_whitespace = 1
|
2019-08-25 18:59:39 +02:00
|
|
|
|
|
|
|
" ALE colors
|
|
|
|
highlight ALEWarning ctermbg=Yellow
|
|
|
|
highlight ALEWarning ctermfg=Black
|
|
|
|
highlight ALEError ctermbg=DarkRed
|
|
|
|
highlight ALEError ctermfg=White
|