1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
return {
"ThePrimeagen/harpoon",
branch = "harpoon2",
requires = {
{ "nvim-lua/plenary.nvim" },
},
config = function()
local harpoon = require("harpoon")
harpoon:setup()
vim.keymap.set("n", "<leader>a", function()
harpoon:list():add()
end)
vim.keymap.set("n", "<C-e>", function()
harpoon.ui:toggle_quick_menu(harpoon:list())
end)
for _, idx in ipairs({ 1, 2, 3, 4, 5 }) do
vim.keymap.set("n", string.format("<leader>%d", idx), function()
harpoon:list():select(idx)
end)
end
vim.keymap.set("n", "<A-S-P>", function()
harpoon:list():prev()
end)
vim.keymap.set("n", "<A-S-N>", function()
harpoon:list():next()
end)
end,
}
|