From: Simon Ruderich Date: Tue, 12 May 2009 14:59:10 +0000 (+0200) Subject: vimrc: Move EDITOR SETTINGS up. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=41a2f56d3a83d46d640f601d12866167c06bb3c2;p=config%2Fdotfiles.git vimrc: Move EDITOR SETTINGS up. --- 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.