]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Move EDITOR SETTINGS up.
authorSimon Ruderich <simon@ruderich.org>
Tue, 12 May 2009 14:59:10 +0000 (16:59 +0200)
committerSimon Ruderich <simon@ruderich.org>
Tue, 12 May 2009 14:59:10 +0000 (16:59 +0200)
vimrc

diff --git a/vimrc b/vimrc
index bd0f4a14ad02c05de5347b87209144c7ec69faea..2df92ecac98112065708f014a1c64a349c6da3e2 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -10,6 +10,18 @@ set runtimepath-=~/.vim
 set runtimepath^=~/.vim,~/.vim/plugins,~/.vim/runtime
 
 
+" EDITOR SETTINGS
+
+" When completing paths first use the longest path then display a list of all
+" possible files.
+set wildmode=longest,list
+
+" Increase number of tabs which can be opened with the -p option.
+if v:version >= 700
+    set tabpagemax=50
+endif
+
+
 " EDIT SETTINGS
 
 " Enable automatic file detection, plugin and indention.
@@ -96,18 +108,6 @@ set list
 set listchars=trail:-
 
 
-" EDITOR SETTINGS
-
-" When completing paths first use the longest path then display a list of all
-" possible files.
-set wildmode=longest,list
-
-" Increase number of tabs which can be opened with the -p option.
-if v:version >= 700
-    set tabpagemax=50
-endif
-
-
 " MAPPINGS (except for plugins, see PLUGIN SETTINGS below)
 
 " Use <space> to move down a page and - to move up one like in mutt.