aboutsummaryrefslogtreecommitdiff
path: root/vim/after/plugin/spellfile_local.vim
blob: 1655e78c66fa039843bc0017fd92968107e3cdcc (plain) (blame)
1
2
3
4
5
6
7
8
" Use XDG dirs for 'spellfile' if XDG_DATA_HOME is useable
if xdg#DataHome() !=# ''
  let g:spellfile_local_dirs = [ xdg#DataHome() ]
  call extend(
        \ g:spellfile_local_dirs,
        \ xdg#DataDirs(),
        \)
endif