From 891cbe898e53797e8b7f996a24ce1ab90bb020e7 Mon Sep 17 00:00:00 2001 From: Pavel Pertsev Date: Mon, 10 Nov 2014 02:38:58 +0300 Subject: [PATCH] Elixir lang highlighting --- colors/gruvbox.vim | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/colors/gruvbox.vim b/colors/gruvbox.vim index 076a14ae..5c680656 100644 --- a/colors/gruvbox.vim +++ b/colors/gruvbox.vim @@ -580,7 +580,7 @@ let g:indentLine_color_gui = '#' . s:gb.dark2[0] " }}} " Rainbow Parentheses: {{{ -if !exists('g:rbpt_colorpairs ') +if !exists('g:rbpt_colorpairs') let g:rbpt_colorpairs = \ [ \ ['blue', '#458588'], ['magenta', '#b16286'], @@ -956,6 +956,14 @@ call s:HL('javaOperator', 'orange') call s:HL('javaVarArg', 'green') +" }}} +" Elixir: {{{ + +hi! link elixirDocString Comment + +call s:HL('elixirStringDelimiter', 'green') +call s:HL('elixirInterpolationDelimiter', 'aqua') + " }}} " Functions -------------------------------------------------------------------