nvim: Fix spell dictionary not able to be found

Added the previously important 'site' directory to the runtime path of
neovim so it stops complaining about not finding spell dictionaries on
starting up with a spell-enabled file.
This commit is contained in:
Marty Oehme 2023-02-10 12:08:16 +01:00
parent 7965036eed
commit 0484556f04
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -54,3 +54,5 @@ require("lazy").setup("plugins")
require('look')
require('maps')
-- to include e.g. the spell dictionaries for vim
vim.opt.rtp:append(vim.fn.stdpath("data") .. "/site")