]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Check if 'splitright' is available.
authorSimon Ruderich <simon@ruderich.org>
Tue, 20 Nov 2012 22:02:45 +0000 (23:02 +0100)
committerSimon Ruderich <simon@ruderich.org>
Tue, 20 Nov 2012 22:02:45 +0000 (23:02 +0100)
Also move it to a the EDITOR section.

vimrc

diff --git a/vimrc b/vimrc
index 5bc0894bb96d27f5a174276aa8c84b13c7b57ec1..5141f596c77e83b5e5cfcf74868df93aac3bdb98 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -105,9 +105,6 @@ if exists('+cryptmethod')
     set cryptmethod=blowfish
 endif
 
-" Create new split windows on the right (and not left).
-set splitright
-
 " Clear all vimrc-related autocmds. Has to be done here as the vimrc augroup
 " is used multiple times. Necessary to support reloading the vimrc.
 if has('autocmd')
@@ -236,6 +233,11 @@ endif
 " (add ! to override)" warning when switching buffers.
 set hidden
 
+" When splitting vertically put the new window right of the current one.
+if has('vertsplit')
+    set splitright
+endif
+
 
 " DISPLAY SETTINGS