mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
20 lines
348 B
Nix
20 lines
348 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.wilder-nvim.enable = true;
|
||
|
};
|
||
|
|
||
|
example = {
|
||
|
plugins.wilder-nvim = {
|
||
|
enable = true;
|
||
|
modes = ["/" ":"];
|
||
|
enableCmdlineEnter = false;
|
||
|
wildcharm = "k";
|
||
|
nextKey = "a";
|
||
|
prevKey = "b";
|
||
|
acceptKey = "c";
|
||
|
rejectKey = "d";
|
||
|
acceptCompletionAutoSelect = false;
|
||
|
};
|
||
|
};
|
||
|
}
|