From d11c7b2c012aa2449fe1fb74dff1ee6c52cc881c Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Sat, 1 Dec 2018 19:50:58 +0100 Subject: [PATCH] do not enable spellcheck by default --- vim/.vimrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vim/.vimrc b/vim/.vimrc index 32cbdbc..bdb266b 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -40,7 +40,6 @@ set report=0 set showcmd set showmatch -set spell set spellcapcheck= set complete+=kspell @@ -293,19 +292,20 @@ augroup END "" txt, mail, tex augroup text autocmd! - autocmd FileType text,markdown,mail,tex set wrap wm=2 nocindent spell + autocmd FileType text,markdown,mail,tex set wrap wm=2 nocindent spell textwidth=79 colorcolumn=80 augroup END augroup markdown autocmd! - autocmd FileType markdown set wrap wm=2 nocindent spell + autocmd FileType markdown set wrap wm=2 nocindent spell textwidth=79 colorcolumn=80 augroup END -"" JavaScript +"" Web augroup web autocmd! autocmd FileType javascript map r :TernRename autocmd BufRead,BufNewFile *.template set filetype=html.mustache syntax=mustache + autocmd BufRead,BufNewFile *.html set spell augroup END "" Help