wildfire
URL: https://github.com/SUSTech-data/wildfire.nvim/
Maintainers: Filippo Airaldi
A modern successor to wildfire.vim, empowered with the superpower of treesitter.
plugins.wildfire.enable
Whether to enable wildfire.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.wildfire.package
The wildfire package to use.
Type: package
Default:
pkgs.vimPlugins.wildfire-nvim
Declared by:
plugins.wildfire.autoLoad
Whether to automatically load wildfire when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.wildfire.callSetup
Whether to generate the standard require('wildfire').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.wildfire.settings
Options provided to the require('wildfire').setup function.
Type: lua value
Default:
{ }
Example:
{
filetype_exclude = [
"qf"
];
keymaps = {
init_selection = "<CR>";
node_decremental = "<BS>";
node_incremental = "<CR>";
};
surrounds = [
[
"("
")"
]
[
"{"
"}"
]
[
"<"
">"
]
[
"["
"]"
]
];
}
Declared by: