Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rubiin/vimwordlist.nvim
https://github.com/rubiin/vimwordlist.nvim
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/rubiin/vimwordlist.nvim
- Owner: rubiin
- License: bsd-3-clause
- Created: 2024-03-12T13:26:48.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-03-20T13:44:21.000Z (8 months ago)
- Last Synced: 2024-03-20T14:51:46.940Z (8 months ago)
- Language: Lua
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Simple plugin that adds and dynamically updates spellcheck dictionary for vim and neovim keywords.
## InstallationUsing [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