]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - vimrc
vimrc: Minor documentation update.
[config/dotfiles.git] / vimrc
diff --git a/vimrc b/vimrc
index 26f5383566b9652a1ecb983b7ff092ede8c41e30..81c8f1b8132ac7e7711b7e05e208956c47106a36 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -69,8 +69,8 @@ set history=1000
 " Increase number of possible undos.
 set undolevels=1000
 
+" Remember marks (including the last cursor position) for more files.
 if has('viminfo')
-    " Remember marks (including the last cursor position) for more files.
     set viminfo^='1000
 endif
 
@@ -510,9 +510,11 @@ endif
 
 " ABBREVIATIONS
 
-" Fix some of my spelling mistakes.
+" Fix some of my spelling mistakes (German).
 inoreabbrev relle reelle
 inoreabbrev reele reelle
+" Fix some of my spelling mistakes (English).
+inoreabbrev completly completely
 
 
 " SYNTAX SETTINGS
@@ -584,7 +586,8 @@ if has('syntax')
                   \ '|     call matchadd("Error", "\\%u" . l:x)'
                   \ '| endfor'
 
-" Reduce visibility of tabs in contrast to normal SpecialKeys.
+" Special highlight for tabs to reduce their visibility in contrast to other
+" SpecialKey characters (e.g. ^L).
             if &t_Co == 256 && <SID>HasSyntaxGroup('specialKeyTab')
                 call matchadd('specialKeyTab', '\t')
             endif
@@ -637,11 +640,17 @@ if has('eval')
         silent! execute 'call pathogen#runtime_append_all_bundles()'
     endif
 
+" Settings for securemodelines.
+    " Only allow items I need (also includes spl which is not enabled by
+    " default).
+    let g:secure_modelines_allowed_items = ['ft', 'spl', 'fdm',
+                                          \ 'sw', 'sts', 'noet']
+
 " Settings for the NERD commenter.
     " Don't create any mappings I don't want to use.
     let g:NERDCreateDefaultMappings = 0
     " Map toggle comment.
-    map <Leader><Leader> <Plug>NERDCommenterToggle
+    nmap <Leader><Leader> <Plug>NERDCommenterToggle
 
 " XPTemplate settings.
     " Try to maintain snippet rendering even after editing outside of a
@@ -720,7 +729,7 @@ if has('autocmd')
                                  \ setlocal textwidth=72
 " Use the same comment string as for Vim files in Vimperator files.
         autocmd FileType vimperator setlocal commentstring=\"%s
-" Use tex compiler for (La)TeX files.
+" Use TeX compiler for (La)TeX files.
         autocmd FileType tex compiler tex
 
 " FTDETECT AUTO COMMANDS