Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rubiin/vimwordlist.nvim


https://github.com/rubiin/vimwordlist.nvim

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

Simple plugin that adds and dynamically updates spellcheck dictionary for vim and neovim keywords.
## Installation

Using [lazy.nvim](https://github.com/folke/lazy.nvim) in lua

```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