From: Simon Ruderich Date: Wed, 1 Feb 2012 01:59:44 +0000 (+0100) Subject: vimrc: Don't highlight embedded languages in Vim script. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=bd6964f38442723c1f48bfb0e7a19cb993183380 vimrc: Don't highlight embedded languages in Vim script. --- diff --git a/vimrc b/vimrc index 0df4fd6..15660a4 100644 --- a/vimrc +++ b/vimrc @@ -466,8 +466,9 @@ if has('syntax') let g:perl_include_pod = 1 " syntax coloring for PODs " Python. let g:python_highlight_all = 1 - " Vim, enable folding for autogroups (a) and functions (f). - let g:vimsyn_folding = "af" + " Vim. + let g:vimsyn_embed = 0 " don't highlight embedded languages + let g:vimsyn_folding = "af" " folding for autogroups (a) and functions (f) " XML. let g:xml_syntax_folding = 1 endif