aboutsummaryrefslogtreecommitdiff
path: root/vim/config/spell.vim
blob: 046b50ff21f5538a0ddf0964abe95a98b6844622 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
" Configure spell checking features, if available
if has('spell')

  " Don't check spelling by default, but bind \s to toggle this
  set nospell
  nnoremap <leader>s :setlocal spell! spell?<CR>

  " 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 <leader>u :setlocal spelllang=en_us spelllang?<CR>
  nnoremap <leader>z :setlocal spelllang=en_nz spelllang?<CR>
endif