From fd636fc6dcd8a547daab1544432877bf8efa0c1e Mon Sep 17 00:00:00 2001 From: Seth Woodworth Date: Sun, 15 Feb 2015 00:13:22 -0500 Subject: runtime: make the spellfile creation use .nvim folder #1990 --- runtime/autoload/spellfile.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/autoload/spellfile.vim b/runtime/autoload/spellfile.vim index e7fd1d8b17..8024f40bb0 100644 --- a/runtime/autoload/spellfile.vim +++ b/runtime/autoload/spellfile.vim @@ -198,7 +198,7 @@ endfunc function! spellfile#WritableSpellDir() if has("unix") " For Unix always use the $HOME/.vim directory - return $HOME . "/.vim/spell" + return $HOME . "/.nvim/spell" endif for dir in split(&rtp, ',') if filewritable(dir) == 2 -- cgit