diff --git a/.config/nvim/plugin/leap.lua b/.config/nvim/plugin/leap.lua index 14ea952b..d977c684 100644 --- a/.config/nvim/plugin/leap.lua +++ b/.config/nvim/plugin/leap.lua @@ -1,3 +1,3 @@ local leap = require("leap") -vim.keymap.set({ "n", "x", "o" }, "s", function() leap.leap() end) +vim.keymap.set({ "n", "x", "o" }, "s", function() leap.leap { backward = false } end) vim.keymap.set("n", "S", function() leap.leap { backward = true } end)