summaryrefslogtreecommitdiffstats
path: root/syntax/gohtmltmpl.vim
diff options
context:
space:
mode:
Diffstat (limited to 'syntax/gohtmltmpl.vim')
-rw-r--r--syntax/gohtmltmpl.vim15
1 files changed, 15 insertions, 0 deletions
diff --git a/syntax/gohtmltmpl.vim b/syntax/gohtmltmpl.vim
new file mode 100644
index 00000000..5aa6c98d
--- /dev/null
+++ b/syntax/gohtmltmpl.vim
@@ -0,0 +1,15 @@
+if exists("b:current_syntax")
+ finish
+endif
+
+if !exists("main_syntax")
+ let main_syntax = 'html'
+endif
+
+runtime! syntax/gotexttmpl.vim
+runtime! syntax/html.vim
+unlet b:current_syntax
+
+let b:current_syntax = "gohtmltmpl"
+
+" vim:ts=4:sw=4:et