From 296db433f57777d4c2120af26177185247a2774a Mon Sep 17 00:00:00 2001 From: Mike Knepper Date: Fri, 20 Mar 2015 15:28:01 -0500 Subject: [PATCH] Adds colors for italic, bold, and code in markdown --- colors/gruvbox.vim | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/colors/gruvbox.vim b/colors/gruvbox.vim index a4cd793c..c97b87d3 100644 --- a/colors/gruvbox.vim +++ b/colors/gruvbox.vim @@ -1013,6 +1013,13 @@ call s:HL('scalaTypeTypePostDeclaration', 'yellow') call s:HL('scalaInstanceDeclaration', 'light1') call s:HL('scalaInterpolation', 'aqua') +" }}} +" Markdown: {{{ +call s:HL('markdownItalic', 'yellow') +call s:HL('markdownBold', 'red') +call s:HL('markdownCode', 'blue') +call s:HL('markdownCodeBlock', 'blue') +call s:HL('markdownCodeDelimiter', 'blue') " }}} " Functions -------------------------------------------------------------------