blink-emoji

URL: https://github.com/moyiz/blink-emoji.nvim/

Maintainers: Austin Horstman


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

For example:

plugins.blink-cmp = {
  enable = true;
  settings.sources.providers = {
    emoji = {
      module = "blink-emoji";
      name = "Emoji";
      score_offset = 15;
      # Optional configurations
      opts = {
        insert = true;
      };
    };
  };
};

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"
    "emoji"
  ];
};

Whether to enable blink-emoji.nvim.

Type: boolean

Default: false

Example: true

Declared by:

The blink-emoji.nvim package to use.

Type: package

Default: pkgs.vimPlugins.blink-emoji-nvim

Declared by:

Whether to automatically load blink-emoji.nvim when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by: