From 312f46c288d46273109e5a75e391e920a8fce8b0 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Fri, 12 Mar 2010 04:13:29 +0100 Subject: [PATCH] vimrc: Only color the first 200 columns per line. --- vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vimrc b/vimrc index 88db35b..acc361f 100644 --- a/vimrc +++ b/vimrc @@ -260,6 +260,11 @@ endif if has('syntax') syntax enable +" Don't highlight more than 200 columns as I normally don't have that long +" lines and they slow down syntax coloring. Thanks to Derek Wyatt +" (http://www.derekwyatt.org/vim/the-vimrc-file/). + set synmaxcol=200 + " Highlight lines longer than 78 characters. Thanks to Tony Mechelynck " from the Vim mailing list. It can easily be " disabled when necessary with :2match (in Vim >= 700). -- 2.44.1