如何让 Vim 使用当前目录中的本地拼写文件?

How to get Vim to use a local spell-file in the current directory?

我不明白 Vim 可以进行拼写检查,它可以修改 ~/.vim 中的拼写文件以将单词标记为正确。

我想将 "local" 拼写文件保存在与我正在编辑的文件相同的目录中,这样如果我在不同的目录中编辑不同的文件,不同的拼写文件将被使用。

我如何设置 Vim 来执行此操作?

Vim自己的帮助在这里很有用:

:help spellfile
    Name of the word list file where words are added for the 
    zg and zw commands.  It must end in ".{encoding}.add". 
    You need to include the path, otherwise the file is placed
    in the current directory. 

更详细的信息: http://thejakeharding.com/tutorial/2012/06/13/using-spell-check-in-vim.html Separate Vim spellfile for custom words

所以:

:set spellfile=./en.utf-8.add

hth