mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +02:00
19 lines
348 B
Nix
19 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;
|
|
};
|
|
};
|
|
}
|