diff options
-rw-r--r-- | runtime/autoload/spellfile.vim | 2 |
1 files changed, 1 insertions, 1 deletions
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 |