From d7c681d9222f9dca620891fc8e7dae42ce88902d Mon Sep 17 00:00:00 2001 From: Ondrej Kipila Date: Fri, 5 May 2017 09:00:37 +0200 Subject: [PATCH 1/2] Add colorscheme for ALE plugin --- colors/gruvbox.vim | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/colors/gruvbox.vim b/colors/gruvbox.vim index ebc9efff..31718d38 100644 --- a/colors/gruvbox.vim +++ b/colors/gruvbox.vim @@ -806,6 +806,15 @@ call s:HL('BufTabLineActive', s:fg4, s:bg2) call s:HL('BufTabLineHidden', s:bg4, s:bg1) call s:HL('BufTabLineFill', s:bg0, s:bg0) +" }}} +" Asynchronous Lint Engine: {{{ + +call s:HL('ALEError', s:none, s:none, s:undercurl, s:red) +call s:HL('ALEWarning', s:none, s:none, s:undercurl, s:yellow) + +hi! link ALEErrorSign GruvboxRedSign +hi! link ALEWarningSign GruvboxYellowSign + " }}} " Filetype specific ----------------------------------------------------------- From 416eaa92bacb7ef91601d3f4dc2b834f42392f9a Mon Sep 17 00:00:00 2001 From: Ondrej Kipila Date: Wed, 28 Jun 2017 10:17:45 +0200 Subject: [PATCH 2/2] Add Info highlights for ALE plugin --- colors/gruvbox.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/colors/gruvbox.vim b/colors/gruvbox.vim index 31718d38..759d612d 100644 --- a/colors/gruvbox.vim +++ b/colors/gruvbox.vim @@ -811,9 +811,11 @@ call s:HL('BufTabLineFill', s:bg0, s:bg0) call s:HL('ALEError', s:none, s:none, s:undercurl, s:red) call s:HL('ALEWarning', s:none, s:none, s:undercurl, s:yellow) +call s:HL('ALEInfoLine', s:none, s:none, s:undercurl, s:blue) hi! link ALEErrorSign GruvboxRedSign hi! link ALEWarningSign GruvboxYellowSign +hi! link ALEInfoSign GruvboxBlueSign " }}}