Simple plugin that adds and dynamically updates spellcheck dictionary for vim and neovim keywords.
Using lazy.nvim in lua
{
"rubiin/vimwordlist.nvim",
cmd = "GenerateVimSpell",
build = ":GenerateVimSpell",
config = function()
vim.opt.spelllang:append("vim")
end,
}
The plugin also exposes GenerateVimSpell
user command that can be called to update the spell file manually.
Forked from https://github.com/norseghost/nvimwordlist as it was no longer working