From 07fc8ce2fdd565fdbb082ee120b4d0d574c72df3 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 28 Oct 2017 21:45:25 +1300 Subject: Move spelling .vimrc config into subfile --- vim/vimrc | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'vim/vimrc') diff --git a/vim/vimrc b/vim/vimrc index 1a4c916d..55a7a9bd 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -176,33 +176,6 @@ set autowrite set scrolloff=0 set sidescrolloff=16 -" Configure spell checking features, if available -if has('spell') - - " Don't check spelling by default, but bind \s to toggle this - set nospell - nnoremap s :setlocal spell! - - " Use New Zealand English for spelling by default (it's almost identical - " to British English), but bind \u to switch to US English and \z to - " switch back - set spelllang=en_nz - nnoremap u :setlocal spelllang=en_us - nnoremap z :setlocal spelllang=en_nz -endif - -" Don't keep .viminfo information for files in temporary directories or shared -" memory filesystems; this is because they're used as scratch spaces for tools -" like sudoedit(8) and pass(1) and hence could present a security problem -if has('viminfo') && has('autocmd') - augroup viminfoskip - autocmd! - silent! autocmd BufNewFile,BufReadPre - \ /tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*,*/shm/* - \ setlocal viminfo= - augroup END -endif - " Preserve the flags for a pattern when repeating a substitution with &; I don't " really understand why this isn't a default, but there it is nnoremap & :&& -- cgit v1.2.3