From ef51e8712686fd780d2d28b4168285e20ae10380 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 21 Oct 2019 13:59:37 +0200 Subject: [PATCH] [FIX][VIM] Correct ALE warning color in lightline Because of a typo, the background color was not changed when warnings were displayed. --- vim/.vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/.vimrc b/vim/.vimrc index f88ac1d..aee5c4e 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -249,7 +249,7 @@ let g:lightline.component_expand={ let g:lightline.component_type={ \ 'readonly': 'error', \ 'linter_checking': 'left', - \ 'linter_warnings': 'warning', + \ 'linter_warn': 'warning', \ 'linter_errors': 'error', \ 'linter_ok': 'left', \ }