X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=vimrc;h=ea0e5f0823e19a69c2e544f730be6b278479c53d;hb=011957a689c77df4dc695d4a06f92e0e40d021c8;hp=d8ed984233f9de16aaf0887b812b588e88cca3ba;hpb=8bac9ab6d04a00e3804ecf831de54c2dd2f533a0;p=config%2Fdotfiles.git diff --git a/vimrc b/vimrc index d8ed984..ea0e5f0 100644 --- a/vimrc +++ b/vimrc @@ -81,7 +81,7 @@ set smartcase " Activate spell checking, use English as default. Don't use spell checking " when diffing. -if v:version >= 700 && !&diff +if v:version >= 700 && has('syntax') && !&diff set spell set spelllang=en_us endif @@ -141,6 +141,9 @@ nnoremap 8 :8b nnoremap 9 :9b nnoremap 0 :10b +" Make last active window the only window. Similar to o. +nnoremap O po + " Maps to change spell language between English and German and disable spell " checking. if v:version >= 700 @@ -152,7 +155,7 @@ endif " Add semicolon to the end of the line. Thanks to " http://www.van-laarhoven.org/vim/.vimrc for this idea and godlygeek in #vim " on Freenode for an improved version which doesn't clobber any marks. -nnoremap ; :call setline(line('.'), getline('.') . ';') +nnoremap ; :call setline(line('.'), getline('.') . ';') " I often type "W" instead of "w" when trying to save a file. Fix my mistake. " Thanks to Tony Mechelynck from the Vim @@ -253,7 +256,7 @@ if has('autocmd') " backupcopy=auto. autocmd FileType crontab setlocal backupcopy=yes " Don't use the modeline as the diff created by `git commit -v` may contain -" one which could change the filetype or other settings of the commit window. +" one which could change the filetype or other settings of the commit buffer. autocmd FileType gitcommit setlocal nomodeline | \ let g:secure_modelines_allowed_items = [] " Allow folding in perl.