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.
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.