diff options
author | Dusan Orlovic <duleorlovic@gmail.com> | 2017-11-06 14:17:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-06 14:17:38 +0100 |
commit | 89832884c96a9124f6e99999247e77dc6d20f09c (patch) | |
tree | 7bdbd0f345ceeb92b29756293fbb66118c5f1060 | |
parent | fa7d041c26aa6616c13a62274a7fc8458f6096dd (diff) | |
download | ale-89832884c96a9124f6e99999247e77dc6d20f09c.zip |
Add example for changing highlight color
Added example on how to actually change the color.
Related to #1077
-rw-r--r-- | README.md | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -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> |