nvim: Fix fzf-lua jumps shortcut

Was doubling up the `<leader>fr` shortcut which is actually to show
registers. Now correctly mapped to `<leader>fj` (for jumps).
This commit is contained in:
Marty Oehme 2025-08-23 12:38:45 +02:00
parent 0af5a2def5
commit 943780c38b
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -269,7 +269,7 @@ return { -- file/item pickers and managers
desc = "registers",
},
{
"<leader>fr",
"<leader>fj",
function()
require("fzf-lua").jumps()
end,