From 89832884c96a9124f6e99999247e77dc6d20f09c Mon Sep 17 00:00:00 2001 From: Dusan Orlovic Date: Mon, 6 Nov 2017 14:17:38 +0100 Subject: [PATCH] Add example for changing highlight color Added example on how to actually change the color. Related to #1077 --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ff0597..b8be475 100644 --- a/README.md +++ b/README.md @@ -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.