From de44313bb52e9e4a1aec5fe16e02879bfbedfaa9 Mon Sep 17 00:00:00 2001 From: Vin Howe <24789592+vinhowe@users.noreply.github.com> Date: Mon, 19 Oct 2020 16:05:15 -0600 Subject: [PATCH] Add bold, italic, bold/italic formatting for Markdown, HTML --- colors/gotham.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/colors/gotham.vim b/colors/gotham.vim index 9da03af..2879806 100644 --- a/colors/gotham.vim +++ b/colors/gotham.vim @@ -233,7 +233,10 @@ call s:Col('rubyStringDelimiter', 'green') " HTML (and often Markdown). call s:Col('htmlArg', 'blue') call s:Col('htmlItalic', 'magenta') +call s:Attr('htmlItalic', 'italic') call s:Col('htmlBold', 'cyan', '') +call s:Attr('htmlBold', 'bold') +call s:Attr('htmlBoldItalic', 'bold,italic') " Python call s:Col('pythonStatement', 'blue')