local map = require("liamm.core.keymap").nnoremap -- return { -- "theprimeagen/harpoon", -- branch = "harpoon2", -- dependencies = { -- "nvim-lua/plenary.nvim", -- }, -- lazy = false, -- config = function() -- local harpoon = require("harpoon") -- -- ---@diagnostic disable-next-line: missing-parameter -- harpoon:setup() -- map("a", function() harpoon:list():append() end) -- map("h", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end) -- map("", function() harpoon:list():select(1) end) -- map("", function() harpoon:list():select(2) end) -- map("", function() harpoon:list():select(3) end) -- map("", function() harpoon:list():select(4) end) -- end, -- } return { "ThePrimeagen/harpoon", branch = "harpoon2", config = function() local harpoon = require("harpoon") ---@diagnostic disable-next-line: missing-parameter harpoon:setup() map("a", function() harpoon:list():add() end) map("", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end) map("", function() harpoon:list():select(1) end) map("", function() harpoon:list():select(2) end) map("", function() harpoon:list():select(3) end) map("", function() harpoon:list():select(4) end) end, }