From 41a2f56d3a83d46d640f601d12866167c06bb3c2 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Tue, 12 May 2009 16:59:10 +0200 Subject: [PATCH] vimrc: Move EDITOR SETTINGS up. --- vimrc | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/vimrc b/vimrc index bd0f4a1..2df92ec 100644 --- 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 to move down a page and - to move up one like in mutt. -- 2.45.2