Add example for changing highlight color

Added example on how to actually change the color.
Related to #1077
This commit is contained in:
Dusan Orlovic 2017-11-06 14:17:38 +01:00 committed by GitHub
parent fa7d041c26
commit 89832884c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -392,8 +392,13 @@ let g:ale_set_highlights = 0
```
You can control all of the highlights ALE uses, say if you are using a different
color scheme which produces ugly highlights. See `:help ale-highlights` for more
information.
color scheme which produces ugly highlights. For example:
```vim
highlight ALEWarning ctermbg=DarkMagenta
```
See `:help ale-highlights` for more information.
<a name="faq-statusline"></a>