From 8534e88d9aa6a43bd949aa0ff5fcfe7670e779d0 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sat, 30 Dec 2017 09:33:27 +0100 Subject: [PATCH] Add Markdown italic and bold delimiter highlighting The groups "markdownBoldDelimiter" and "markdownItalicDelimiter" for the delimiter of italic and bold formatted text are now highlighted as keywords with "nord9". This also ensures that both styles are easily recognizable even when the "nord_italic" (1) theme configuration is not enabled. References: (1) https://github.com/arcticicestudio/nord-vim/pull/89 GH-90 --- colors/nord.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/colors/nord.vim b/colors/nord.vim index 0c48df60..2f579186 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -361,6 +361,7 @@ call s:hi("markdownIdDeclaration", s:nord7_gui, "", s:nord7_term, "", "", "") call s:hi("markdownH1", s:nord8_gui, "", s:nord8_term, "", "", "") call s:hi("markdownLinkText", s:nord8_gui, "", s:nord8_term, "", "", "") call s:hi("markdownUrl", s:nord4_gui, "", "NONE", "", "NONE", "") +hi! link markdownBoldDelimiter Keyword hi! link markdownFootnoteDefinition markdownFootnote hi! link markdownH2 markdownH1 hi! link markdownH3 markdownH1 @@ -368,6 +369,7 @@ hi! link markdownH4 markdownH1 hi! link markdownH5 markdownH1 hi! link markdownH6 markdownH1 hi! link markdownIdDelimiter Keyword +hi! link markdownItalicDelimiter Keyword hi! link markdownLinkDelimiter Keyword hi! link markdownLinkTextDelimiter Keyword hi! link markdownListMarker Keyword