]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
Create new section PLUGIN SETTINGS.
authorSimon Ruderich <simon@ruderich.org>
Tue, 17 Feb 2009 10:43:08 +0000 (11:43 +0100)
committerSimon Ruderich <simon@ruderich.org>
Tue, 17 Feb 2009 10:43:08 +0000 (11:43 +0100)
Move plugin settings there.

vimrc

diff --git a/vimrc b/vimrc
index 8e64ca0204701c964fc05040a4532fcff0cead7c..656c6f6c9d75ae59963bbdb688fbbadba25eed9f 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -102,18 +102,12 @@ if v:version >= 700
 endif
 
 
-" MAPPINGS
+" MAPPINGS (except for plugins, see PLUGIN SETTINGS below)
 
 " Use "," as my mapleader.
 let mapleader = ","
 let maplocalleader = ","
 
-" Settings for the NERD commenter.
-" Don't create any mappings I don't want to use.
-let NERDCreateDefaultMappings=0
-" Map toggle comment.
-map <Leader><Leader> <plug>NERDCommenterToggle
-
 " Maps to change spell language between English and German.
 map <Leader>se :set spelllang=en_us<CR>
 map <Leader>sd :set spelllang=de_de<CR>
@@ -150,6 +144,15 @@ endif
 syntax enable
 
 
+" PLUGIN SETTINGS
+
+" Settings for the NERD commenter.
+" Don't create any mappings I don't want to use.
+let NERDCreateDefaultMappings=0
+" Map toggle comment.
+map <Leader><Leader> <plug>NERDCommenterToggle
+
+
 " Automatically save and the load the file state (stored in ~/.vim/view).
 autocmd BufWrite * mkview
 autocmd BufRead  * loadview