mini-files
URL: https://github.com/nvim-mini/mini.files/
Maintainers: Heitor Augusto
plugins.mini-files.enable
Whether to enable mini-files.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.mini-files.package
The mini-files package to use.
Type: package
Default:
pkgs.vimPlugins.mini-files
Declared by:
plugins.mini-files.autoLoad
Whether to automatically load mini-files when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.mini-files.settings
Options provided to the require('mini.files').setup function.
Type: lua value
Default:
{ }
Example:
{
content = {
filter = lib.nixvim.mkRaw "nil";
highlight = lib.nixvim.mkRaw "nil";
prefix = lib.nixvim.mkRaw "nil";
sort = lib.nixvim.mkRaw "nil";
};
mappings = {
close = "q";
go_in = "l";
go_in_plus = "L";
go_out = "h";
go_out_plus = "H";
mark_goto = "'";
mark_set = "m";
reset = "<BS>";
reveal_cwd = "@";
show_help = "g?";
synchronize = "=";
trim_left = "<";
trim_right = ">";
};
options = {
permanent_delete = true;
use_as_default_explorer = true;
};
windows = {
max_number = lib.nixvim.mkRaw "math.huge";
preview = false;
width_focus = 50;
width_nofocus = 15;
width_preview = 25;
};
}
Declared by: