]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Add mapping to disable spell checking.
authorSimon Ruderich <simon@ruderich.org>
Tue, 12 May 2009 15:15:32 +0000 (17:15 +0200)
committerSimon Ruderich <simon@ruderich.org>
Tue, 12 May 2009 15:15:32 +0000 (17:15 +0200)
vimrc

diff --git a/vimrc b/vimrc
index c9539b6b04150262b369a49d52fa2c4112d1a339..b0b4b72d7f804525eda43107388e2f9078fa4fc5 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -113,9 +113,10 @@ set listchars=trail:-
 nnoremap <Space> <C-f>
 nnoremap - <C-b>
 
-" 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>
+" Maps to change spell language between English and German and disable it.
+map <Leader>sn :set nospell<CR>
+map <Leader>se :set spell spelllang=en_us<CR>
+map <Leader>sd :set spell spelllang=de_de<CR>
 
 " Add semicolon to the end of the line. Thanks to
 " http://www.van-laarhoven.org/vim/.vimrc for this idea and godlygeek in #vim