aboutsummaryrefslogtreecommitdiff
path: root/vim/after/plugin/spellfile_local.vim
blob: 9d89852e187d126ff6de85d827bed141e25e2a1a (plain) (blame)
1
2
3
4
5
6
7
8
" Use XDG dirs for 'spellfile'
if xdg#['data']['home'] !=# ''
  let g:spellfile_local_dirs = [ xdg#['data']['home'] ]
  call extend(
        \ g:spellfile_local_dirs,
        \ copy(xdg#['data']['dirs'])
        \)
endif