mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
feat(mini.jump)!: use mini.jump instead of flit
This commit is contained in:
parent
787ceab031
commit
ab4938bc4a
1 changed files with 7 additions and 3 deletions
|
|
@ -171,7 +171,7 @@ return {
|
||||||
|
|
||||||
-- easily jump to any location and enhanced f/t motions for Leap
|
-- easily jump to any location and enhanced f/t motions for Leap
|
||||||
{
|
{
|
||||||
"ggandor/flit.nvim",
|
"echasnovski/mini.jump",
|
||||||
keys = function()
|
keys = function()
|
||||||
---@type LazyKeys[]
|
---@type LazyKeys[]
|
||||||
local ret = {}
|
local ret = {}
|
||||||
|
|
@ -180,11 +180,15 @@ return {
|
||||||
end
|
end
|
||||||
return ret
|
return ret
|
||||||
end,
|
end,
|
||||||
opts = { labeled_modes = "nx" },
|
opts = {
|
||||||
|
delay = {
|
||||||
|
idle_stop = 3000,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
main = "mini.jump",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ggandor/leap.nvim",
|
"ggandor/leap.nvim",
|
||||||
commit = "9a69feb",
|
|
||||||
keys = {
|
keys = {
|
||||||
{ "s", mode = { "n", "x", "o" }, desc = "Leap forward to" },
|
{ "s", mode = { "n", "x", "o" }, desc = "Leap forward to" },
|
||||||
{ "S", mode = { "n", "x", "o" }, desc = "Leap backward to" },
|
{ "S", mode = { "n", "x", "o" }, desc = "Leap backward to" },
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue