]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Wrap all plugin settings in one if has('eval').
authorSimon Ruderich <simon@ruderich.org>
Tue, 22 Nov 2011 14:39:40 +0000 (15:39 +0100)
committerSimon Ruderich <simon@ruderich.org>
Tue, 22 Nov 2011 14:39:40 +0000 (15:39 +0100)
vimrc

diff --git a/vimrc b/vimrc
index 04cae913b00a108a09a499a82e637a86eb08bb06..6fc405bbd278713d454d46fe195876ab0c489713 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -386,23 +386,21 @@ endif
 
 " PLUGIN SETTINGS
 
+if has('eval')
 " Use pathogen which allows one 'runtimepath' entry per plugin. This makes
 " installing/removing/updating plugins simple. (Used for plugins with more
 " than one file.)
-if has('eval') && v:version >= 700
-    execute 'call pathogen#runtime_append_all_bundles()'
-endif
+    if v:version >= 700
+        execute 'call pathogen#runtime_append_all_bundles()'
+    endif
 
 " Settings for the NERD commenter.
 " Don't create any mappings I don't want to use.
-if has('eval')
     let NERDCreateDefaultMappings = 0
-endif
 " Map toggle comment.
-map <Leader><Leader> <Plug>NERDCommenterToggle
+    map <Leader><Leader> <Plug>NERDCommenterToggle
 
 " XPTemplate settings.
-if has('eval')
     " Try to maintain snippet rendering even after editing outside of a
     " snippet.
     let g:xptemplate_strict = 0