From 937449e548c5349fb6dfb783592ea4ebe5d57305 Mon Sep 17 00:00:00 2001 From: Hao Chen Date: Thu, 24 May 2018 19:42:18 +0800 Subject: [PATCH] use a standalone file for xml --- after/syntax/xml.vim | 7 +++++++ colors/dracula.vim | 2 -- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 after/syntax/xml.vim diff --git a/after/syntax/xml.vim b/after/syntax/xml.vim new file mode 100644 index 0000000..0cb27b4 --- /dev/null +++ b/after/syntax/xml.vim @@ -0,0 +1,7 @@ +if dracula#should_abort('xml') + finish +endif + +hi! link xmlTag DraculaGreen +hi! link xmlEndTag DraculaGreen + diff --git a/colors/dracula.vim b/colors/dracula.vim index 60f115f..ab03791 100644 --- a/colors/dracula.vim +++ b/colors/dracula.vim @@ -326,8 +326,6 @@ hi! link helpHyperTextJump DraculaLink hi! link helpCommand DraculaPurple hi! link helpExample DraculaGreen -hi! link xmlEndTag xmlTag - "}}} " vim: fdm=marker ts=2 sts=2 sw=2: