mini-splitjoin
URL: https://github.com/nvim-mini/mini.splitjoin/
Maintainers: Heitor Augusto
plugins.mini-splitjoin.enable
Whether to enable mini-splitjoin.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.mini-splitjoin.package
The mini-splitjoin package to use.
Type: package
Default:
pkgs.vimPlugins.mini-splitjoin
Declared by:
plugins.mini-splitjoin.autoLoad
Whether to automatically load mini-splitjoin when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.mini-splitjoin.callSetup
Whether to generate the standard require('mini.splitjoin').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.mini-splitjoin.settings
Options provided to the require('mini.splitjoin').setup function.
Type: lua value
Default:
{ }
Example:
{
detect = {
brackets = lib.nixvim.mkRaw "nil";
exclude_regions = lib.nixvim.mkRaw "nil";
separator = ",";
};
join = {
hooks_post = lib.nixvim.emptyTable;
hooks_pre = lib.nixvim.emptyTable;
};
mappings = {
join = "";
split = "";
toggle = "gS";
};
split = {
hooks_post = lib.nixvim.emptyTable;
hooks_pre = lib.nixvim.emptyTable;
};
}
Declared by: