README.md

May 25, 2024 ยท View on GitHub

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

Installation

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