diff options
author | Seth Woodworth <seth@sethish.com> | 2015-02-15 00:13:22 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-02-15 12:19:55 -0500 |
commit | fd636fc6dcd8a547daab1544432877bf8efa0c1e (patch) | |
tree | a1201864a7253677e4069ccdc9908a4e381fc538 | |
parent | 1b055c54a012fbf1e3758505b382dba7958bed38 (diff) | |
download | rneovim-fd636fc6dcd8a547daab1544432877bf8efa0c1e.tar.gz rneovim-fd636fc6dcd8a547daab1544432877bf8efa0c1e.tar.bz2 rneovim-fd636fc6dcd8a547daab1544432877bf8efa0c1e.zip |
runtime: make the spellfile creation use .nvim folder #1990
-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 |