
## Description The flit config overrides the descriptions provided by the which-key presets plugin for the `f`/`F`/`t`/`T` motions with an unhelpful description text (just the key itself). Remove the `desc` argument so that which-key uses the existing description (e.g "Move before next char"). ## Related Issue(s) <!-- If this PR fixes any issues, please link to the issue here. - Fixes #<issue_number> --> ## Screenshots | Before | After | | ------------- | ------------- | |  |  | ## Checklist - [x] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines.
61 lines
1.7 KiB
Lua
61 lines
1.7 KiB
Lua
return {
|
|
-- disable flash
|
|
{ "folke/flash.nvim", enabled = false, optional = true },
|
|
|
|
-- easily jump to any location and enhanced f/t motions for Leap
|
|
{
|
|
"ggandor/flit.nvim",
|
|
enabled = true,
|
|
keys = function()
|
|
---@type LazyKeysSpec[]
|
|
local ret = {}
|
|
for _, key in ipairs({ "f", "F", "t", "T" }) do
|
|
ret[#ret + 1] = { key, mode = { "n", "x", "o" } }
|
|
end
|
|
return ret
|
|
end,
|
|
opts = { labeled_modes = "nx" },
|
|
},
|
|
{
|
|
"ggandor/leap.nvim",
|
|
enabled = true,
|
|
keys = {
|
|
{ "s", mode = { "n", "x", "o" }, desc = "Leap Forward to" },
|
|
{ "S", mode = { "n", "x", "o" }, desc = "Leap Backward to" },
|
|
{ "gs", mode = { "n", "x", "o" }, desc = "Leap from Windows" },
|
|
},
|
|
config = function(_, opts)
|
|
local leap = require("leap")
|
|
for k, v in pairs(opts) do
|
|
leap.opts[k] = v
|
|
end
|
|
leap.add_default_mappings(true)
|
|
vim.keymap.del({ "x", "o" }, "x")
|
|
vim.keymap.del({ "x", "o" }, "X")
|
|
end,
|
|
},
|
|
|
|
-- rename surround mappings from gs to gz to prevent conflict with leap
|
|
{
|
|
"echasnovski/mini.surround",
|
|
optional = true,
|
|
opts = {
|
|
mappings = {
|
|
add = "gza", -- Add surrounding in Normal and Visual modes
|
|
delete = "gzd", -- Delete surrounding
|
|
find = "gzf", -- Find surrounding (to the right)
|
|
find_left = "gzF", -- Find surrounding (to the left)
|
|
highlight = "gzh", -- Highlight surrounding
|
|
replace = "gzr", -- Replace surrounding
|
|
update_n_lines = "gzn", -- Update `n_lines`
|
|
},
|
|
},
|
|
keys = {
|
|
{ "gz", "", desc = "+surround" },
|
|
},
|
|
},
|
|
|
|
-- makes some plugins dot-repeatable like leap
|
|
{ "tpope/vim-repeat", event = "VeryLazy" },
|
|
}
|