Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

blink-cmp-spell

URL: https://github.com/ribru17/blink-cmp-spell/

Maintainers: Austin Horstman


Spell checking source for the blink-cmp.


This plugin should be configured through blink-cmp's sources.providers settings.

For example:

{
  plugins.blink-cmp = {
    enable = true;
    settings.sources.providers = {
      spell = {
        module = "blink-cmp-spell";
        name = "Spell";
        score_offset = 100;
        opts = {
        };
      };
    };
  };
}

And then you can add it to blink-cmp's sources.default option:

{
  plugins.blink-cmp = {
    enable = true;
    settings.sources.default = [
      "lsp"
      "path"
      "luasnip"
      "buffer"
      "spell"
    ];
  };
}

Whether to enable blink-cmp-spell.

Type: boolean

Default: false

Example: true

Declared by:

The blink-cmp-spell package to use.

Type: package

Default: pkgs.vimPlugins.blink-cmp-spell

Declared by:

Whether to automatically load blink-cmp-spell when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by: