aboutsummaryrefslogtreecommitdiff
path: root/vim/config/spell.vim
blob: 7775ade9d85248b728800cabc89e9370aee45f85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
" Configure spell checking features, if available
if has('spell')

  " Don't check spelling by default, but bind \s to toggle this
  set nospell
  nnoremap <silent>
        \ <Leader>s
        \ :<C-U>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 <silent>
        \ <Leader>u
        \ :<C-U>setlocal spelllang=en_us spelllang?<CR>
  nnoremap <silent>
        \ <Leader>z
        \ :<C-U>setlocal spelllang=en_nz spelllang?<CR>
endif