lensline
URL: https://github.com/oribarilan/lensline.nvim/
Maintainers: Austin Horstman
plugins.lensline.enable
Whether to enable lensline.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.lensline.package
The lensline package to use.
Type: package
Default:
pkgs.vimPlugins.lensline-nvim
Declared by:
plugins.lensline.autoLoad
Whether to automatically load lensline when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.lensline.callSetup
Whether to generate the standard require('lensline').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.lensline.settings
Options provided to the require('lensline').setup function.
Type: lua value
Default:
{ }
Example:
{
debounce_ms = 250;
focused_debounce_ms = 50;
limits = {
exclude_gitignored = false;
max_lenses = 50;
max_lines = 500;
};
}
Declared by: