plugins/wildfire.nvim: init

This commit is contained in:
Filippo Airaldi 2026-05-29 15:17:15 +02:00 committed by Matt Sturgeon
parent dd9bd8ef00
commit f3dc931903
2 changed files with 85 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{
empty = {
plugins = {
treesitter.enable = true;
wildfire.enable = true;
};
};
defaults = {
plugins = {
treesitter.enable = true;
wildfire = {
enable = true;
settings = {
surrounds = [
[
"("
")"
]
[
"{"
"}"
]
[
"<"
">"
]
[
"["
"]"
]
];
keymaps = {
init_selection = "<CR>";
node_incremental = "<CR>";
node_decremental = "<BS>";
};
filetype_exclude = [ "qf" ];
};
};
};
};
}