Update .config/nvim/lazy-lock.json

Update .config/nvim/lua/plugin/10_hop.lua
Update .config/nvim/lua/plugin/35_yanky.lua
This commit is contained in:
Lewis Wynne 2025-11-03 15:12:23 +00:00
parent b0e03a69ed
commit 0139ededce
3 changed files with 9 additions and 8 deletions

View file

@ -37,7 +37,7 @@ return {
vim.keymap.set({ "n", "x", "o" }, "gw", hop_word_smart, { desc = "hop to word" })
vim.keymap.set({ "n", "x", "o" }, "gl", "<cmd>HopChar1MW<CR>", { desc = "hop to char" })
vim.keymap.set({ "n", "x", "o" }, "g:", "<cmd>HopLineStartMW<CR>", { desc = "hop to line" })
vim.keymap.set({ "n", "x", "o" }, "gn", "<cmd>HopNodes<CR>", { desc = "hop nodes" })
vim.keymap.set({ "n", "x", "o" }, "gt", "<cmd>HopNodes<CR>", { desc = "hop to ts" })
vim.keymap.set({ "n", "x", "o" }, "gp", hop_pattern_smart, { desc = "hop to pattern" })
-- stylua: ignore end
end,