nixvim-for-share/config/plugins/flash.nix
2025-07-26 12:43:01 +00:00

23 lines
333 B
Nix

{ helpers, ... }:
let
inherit (helpers) mkRaw;
in
{
plugins.flash = {
enable = true;
};
keymaps = [
{
mode = [
"n"
"x"
"o"
];
key = "<leader>ss";
action = mkRaw ''
function() require("flash").jump() end
'';
options.desc = "Flash jump";
}
];
}