filemention
URL: https://github.com/not-manu/filemention.nvim/
Maintainers: Zain Kergaye
A Neovim plugin for file selection
plugins.filemention.enable
Whether to enable filemention.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.filemention.package
The filemention package to use.
Type: package
Default:
pkgs.vimPlugins.filemention-nvim
Declared by:
plugins.filemention.autoLoad
Whether to automatically load filemention when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.filemention.callSetup
Whether to generate the standard require('filemention').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.filemention.settings
Options provided to the require('filemention').setup function.
Type: lua value
Default:
{ }
Example:
{
filetypes = [
"markdown"
"text"
"gitcommit"
];
finder = "auto";
format = "bare";
include_hidden = false;
max_items = 500;
respect_gitignore = true;
root = "git";
trigger = "@";
}
Declared by: