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

img-clip

URL: https://github.com/HakonHarnes/img-clip.nvim/

Maintainers: Saygo


Embed images into any markup language, like LaTeX, Markdown or Typst

plugins.img-clip.enable

Whether to enable img-clip.nvim.

Type: boolean

Default: false

Example: true

Declared by:

plugins.img-clip.package

The img-clip.nvim package to use.

Type: package

Default: pkgs.vimPlugins.img-clip-nvim

Declared by:

plugins.img-clip.autoLoad

Whether to automatically load img-clip.nvim when neovim starts.

Type: boolean

Default: false when lazy-loading is enabled.

Example: false

Declared by:

plugins.img-clip.settings

Options provided to the require('img-clip').setup function.

Type: attribute set of anything

Default: { }

Example:

{
  default = {
    dir_path = "assets";
    file_name = "%y-%m-%d-%h-%m-%s";
    relative_to_current_file = false;
    template = "$file_path";
    use_absolute_path = false;
  };
  filetypes = {
    markdown = {
      download_images = true;
    };
  };
}

Declared by: