aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-06-04 08:27:41 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-06-04 08:27:41 +1200
commitcea32561a8f59205a20663531c20d89c1d23546c (patch)
tree045b12ea42053bb7861e4d35de47ea9ec65a1cec /vim
parentRemove unneeded quoting (diff)
downloaddotfiles-cea32561a8f59205a20663531c20d89c1d23546c.tar.gz
dotfiles-cea32561a8f59205a20663531c20d89c1d23546c.zip
Move syntax rules from sahara.vim to .vim/after
Diffstat (limited to 'vim')
-rw-r--r--vim/after/syntax/html.vim4
-rw-r--r--vim/after/syntax/php.vim3
2 files changed, 7 insertions, 0 deletions
diff --git a/vim/after/syntax/html.vim b/vim/after/syntax/html.vim
new file mode 100644
index 00000000..72b79a0b
--- /dev/null
+++ b/vim/after/syntax/html.vim
@@ -0,0 +1,4 @@
+" Make HTML highlighting a bit less visually noisy
+highlight! link htmlTag Type
+highlight! link htmlEndTag htmlTag
+
diff --git a/vim/after/syntax/php.vim b/vim/after/syntax/php.vim
new file mode 100644
index 00000000..fb29b555
--- /dev/null
+++ b/vim/after/syntax/php.vim
@@ -0,0 +1,3 @@
+" Make PHP highlighting a bit less visually noisy
+highlight! link phpVarSelector phpIdentifier
+