From d77c920285aa4bbbf44776fdc0df79a73bd19bee Mon Sep 17 00:00:00 2001 From: Trianta <56975502+Trimutex@users.noreply.github.com> Date: Wed, 15 May 2024 22:31:38 -0500 Subject: [PATCH] nvim: update harpoon keybind --- nvim/after/plugin/binds.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/after/plugin/binds.lua b/nvim/after/plugin/binds.lua index ea9d877..2c6066c 100644 --- a/nvim/after/plugin/binds.lua +++ b/nvim/after/plugin/binds.lua @@ -11,7 +11,7 @@ local harpoon = require("harpoon") -- REQUIRED harpoon:setup() -- REQUIRED -vim.keymap.set("n", "a", function() harpoon:list():append() end) +vim.keymap.set("n", "a", function() harpoon:list():add() end) vim.keymap.set("n", "", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end) vim.keymap.set("n", "", function() harpoon:list():select(1) end) vim.keymap.set("n", "", function() harpoon:list():select(2) end)