1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-13 05:56:08 +01:00
nixvim/tests/test-sources/plugins/by-name/mini-jump/default.nix
2025-11-02 12:34:32 +00:00

27 lines
448 B
Nix

{
empty = {
plugins.mini-jump.enable = true;
};
defaults = {
plugins.mini-jump = {
enable = true;
settings = {
mappings = {
forward = "f";
backward = "F";
forward_till = "t";
backward_till = "T";
repeat_jump = ";";
};
delay = {
highlight = 250;
idle_stop = 10000000;
};
silent = false;
};
};
};
}