diff options
author | Arctic Ice Studio <development@arcticicestudio.com> | 2017-12-30 09:33:27 +0100 |
---|---|---|
committer | Arctic Ice Studio <development@arcticicestudio.com> | 2017-12-30 09:33:27 +0100 |
commit | 8534e88d9aa6a43bd949aa0ff5fcfe7670e779d0 (patch) | |
tree | 7dc2ade404532e11875406971ed7f661dcd66b6f | |
parent | 53fce0db2d0227244213444e0f9ff223a68c5269 (diff) | |
download | nord-vim-8534e88d9aa6a43bd949aa0ff5fcfe7670e779d0.tar.gz |
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
-rwxr-xr-x | colors/nord.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/colors/nord.vim b/colors/nord.vim index 0c48df6..2f57918 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 |