]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - vimrc
vimrc: Only color the first 200 columns per line.
[config/dotfiles.git] / vimrc
diff --git a/vimrc b/vimrc
index a585717b03e14bae75e5fd247ad315770c781e9a..acc361f74e54da10b3daf9b41692d963e6761794 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -125,6 +125,10 @@ set ruler
 " Display partial commands in the status line.
 set showcmd
 
+" Don't redraw screen when executing macros; increases speed. Thanks to James
+" Vega (http://git.jamessan.com/?p=etc/vim.git;a=summary).
+set lazyredraw
+
 " Visualize the line the cursor is currently in.
 if v:version >= 700
     set cursorline
@@ -256,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
 " <antoine.mechelynck@gmail.com> from the Vim mailing list. It can easily be
 " disabled when necessary with :2match (in Vim >= 700).