소스 검색

Merge pull request #170 from ok100/plugin-ale

Add colorscheme for ALE plugin
Pavel Pertsev 8 년 전
부모
커밋
0cd11da803
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      colors/gruvbox.vim

+ 11 - 0
colors/gruvbox.vim

@@ -804,6 +804,17 @@ 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)
+call s:HL('ALEInfoLine', s:none, s:none, s:undercurl, s:blue)
+
+hi! link ALEErrorSign GruvboxRedSign
+hi! link ALEWarningSign GruvboxYellowSign
+hi! link ALEInfoSign GruvboxBlueSign
+
 " }}}
 
 " Filetype specific -----------------------------------------------------------