mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-13 05:56:08 +01:00
27 lines
448 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|