aboutsummaryrefslogtreecommitdiff
path: root/vim/after/plugin/spellfile_local.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/plugin/spellfile_local.vim')
-rw-r--r--vim/after/plugin/spellfile_local.vim13
1 files changed, 13 insertions, 0 deletions
diff --git a/vim/after/plugin/spellfile_local.vim b/vim/after/plugin/spellfile_local.vim
new file mode 100644
index 00000000..7d805660
--- /dev/null
+++ b/vim/after/plugin/spellfile_local.vim
@@ -0,0 +1,13 @@
+" Don't make these settings if the base plugin didn't load
+if !exists('g:loaded_spellfile_local')
+ finish
+endif
+
+" 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