From 433acbe56dda97d944f9bea7ba8af128f1a2dee9 Mon Sep 17 00:00:00 2001 From: saccarosium Date: Fri, 1 Jul 2022 16:20:57 +0200 Subject: [PATCH 1/2] fix: make the Ignore hi group not visible --- colors/codedark.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/codedark.vim b/colors/codedark.vim index 8a341c3..a1d52dd 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -223,7 +223,7 @@ call hi('Debug', s:cdFront, {}, 'none', {}) call hi('Underlined', s:cdNone, {}, 'underline', {}) call hi("Conceal", s:cdFront, s:cdBack, 'none', {}) -call hi('Ignore', s:cdFront, {}, 'none', {}) +call hi('Ignore', s:cdBack, {}, 'none', {}) call hi('Error', s:cdRed, s:cdBack, 'undercurl', s:cdRed) From 1c173d94530ee3421e6713f3b4cc8a122439abd4 Mon Sep 17 00:00:00 2001 From: saccarosium Date: Fri, 1 Jul 2022 16:21:53 +0200 Subject: [PATCH 2/2] fix: make markdown headings same color as vscode --- colors/codedark.vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/colors/codedark.vim b/colors/codedark.vim index a1d52dd..9cf3bff 100644 --- a/colors/codedark.vim +++ b/colors/codedark.vim @@ -293,6 +293,12 @@ call hi('TSTag', s:cdBlue, {}, 'none', {}) call hi('TSTagDelimiter', s:cdGray, {}, 'none', {}) " Markdown: +call hi('markdownH1', s:cdBlue, {}, 'bold', {}) +call hi('markdownH2', s:cdBlue, {}, 'bold', {}) +call hi('markdownH3', s:cdBlue, {}, 'bold', {}) +call hi('markdownH4', s:cdBlue, {}, 'bold', {}) +call hi('markdownH5', s:cdBlue, {}, 'bold', {}) +call hi('markdownH6', s:cdBlue, {}, 'bold', {}) call hi('markdownBold', s:cdBlue, {}, 'bold', {}) call hi('markdownCode', s:cdOrange, {}, 'none', {}) call hi('markdownRule', s:cdBlue, {}, 'bold', {})