diff --git a/nvim/lua/plugins/harpoon.lua b/nvim/lua/plugins/harpoon.lua index bb1b5b8..2d13e31 100644 --- a/nvim/lua/plugins/harpoon.lua +++ b/nvim/lua/plugins/harpoon.lua @@ -5,7 +5,7 @@ return { dependencies = "nvim-telescope/telescope.nvim", -- stylua: ignore keys = { - { "a", function() require("harpoon.ui").add_file() end, desc = "Harpoon Add File" }, + { "a", function() require("harpoon.mark").add_file() end, desc = "Harpoon Add File" }, { ";", function() require("harpoon.ui").toggle_quick_menu() end, desc = "Harpoon Toggle Quickmenu" }, { "1", function() require("harpoon.ui").nav_file(1) end, desc = "Harpoon Buffer 1" }, { "2", function() require("harpoon.ui").nav_file(2) end, desc = "Harpoon Buffer 2" },