From b171fc1997212f4f3004659628e56e875f18c1f0 Mon Sep 17 00:00:00 2001 From: Cason Adams Date: Sat, 5 Jan 2019 12:36:11 -0700 Subject: [PATCH] added better markdown support --- colors/codedark.vim | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index 07fcd9e..3fa4314 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -220,6 +220,17 @@ call hi('Error', s:cdRed, s:cdBack, 'undercurl', s:cdRed) call hi('Todo', s:cdNone, s:cdLeftMid, 'none', {}) +" Markdown: +call hi('markdownBold', s:cdBlue, {}, 'bold', {}) +call hi('markdownCode', s:cdOrange, {}, 'none', {}) +call hi('markdownRule', s:cdBlue, {}, 'bold', {}) +call hi('markdownCodeDelimiter', s:cdOrange, {}, 'none', {}) +call hi('markdownHeadingDelimiter', s:cdBlue, {}, 'none', {}) +call hi('markdownFootnote', s:cdOrange, {}, 'none', {}) +call hi('markdownFootnoteDefinition', s:cdOrange, {}, 'none', {}) +call hi('markdownUrl', s:cdLightBlue, {}, 'underline', {}) +call hi('markdownLinkText', s:cdOrange, {}, 'none', {}) + " JSON: call hi('jsonKeyword', s:cdLightBlue, {}, 'none', {}) call hi('jsonEscape', s:cdYellowOrange, {}, 'none', {})