plugins/wildfire.nvim: init
This commit is contained in:
parent
dd9bd8ef00
commit
f3dc931903
2 changed files with 85 additions and 0 deletions
43
tests/test-sources/plugins/by-name/wildfire/default.nix
Normal file
43
tests/test-sources/plugins/by-name/wildfire/default.nix
Normal 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" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue