From bd6964f38442723c1f48bfb0e7a19cb993183380 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 1 Feb 2012 02:59:44 +0100 Subject: [PATCH] vimrc: Don't highlight embedded languages in Vim script. --- vimrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 -- 2.44.1