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.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.img-clip.package
The img-clip package to use.
Type: package
Default:
pkgs.vimPlugins.img-clip-nvim
Declared by:
plugins.img-clip.autoLoad
Whether to automatically load img-clip when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.img-clip.callSetup
Whether to generate the standard require('img-clip').setup(...) call for this plugin.
By default, this follows the plugin’s built-in behavior. Set this to false
to disable the generated setup call, or to true to force it even when the
plugin would only call it conditionally.
Type: null or boolean
Default:
null
Declared by:
plugins.img-clip.settings
Options provided to the require('img-clip').setup function.
Type: lua value
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: