]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
Be Vim 6 compatible.
authorSimon Ruderich <simon@ruderich.org>
Tue, 3 Feb 2009 13:37:14 +0000 (14:37 +0100)
committerSimon Ruderich <simon@ruderich.org>
Mon, 16 Feb 2009 17:59:32 +0000 (18:59 +0100)
vimrc

diff --git a/vimrc b/vimrc
index 5f64fc389b5a36e616b67fab65d7fb1f92b5afce..5d39f34cf54384612344920b2125c4144a77162a 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -55,8 +55,10 @@ set ignorecase
 set smartcase
 
 " Activate spell checking, use English as default.
-set spell
-set spelllang=en_us
+if v:version >= 700
+    set spell
+    set spelllang=en_us
+endif
 
 
 " DISPLAY SETTINGS
@@ -72,7 +74,9 @@ set ruler
 set showcmd
 
 " Visualize the line the cursor is currently in.
-set cursorline
+if v:version >= 700
+    set cursorline
+endif
 
 " Display tabs as "^I" and trailing space as "-".
 set list