From 413663cdae9f02b73ac3be0cefd290182d364ace Mon Sep 17 00:00:00 2001 From: EGRrqq <86194387+EGRrqq@users.noreply.github.com> Date: Wed, 8 Nov 2023 09:01:30 -0600 Subject: [PATCH] feat(cfg): add keybind for the 5th cell in the harpoon menu --- lua/custom/plugins/harpoon.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/custom/plugins/harpoon.lua b/lua/custom/plugins/harpoon.lua index 77c8b06d..5724fb9c 100644 --- a/lua/custom/plugins/harpoon.lua +++ b/lua/custom/plugins/harpoon.lua @@ -17,6 +17,7 @@ return { vim.keymap.set("n", "", function() ui.nav_file(2) end) vim.keymap.set("n", "", function() ui.nav_file(3) end) vim.keymap.set("n", "", function() ui.nav_file(4) end) + vim.keymap.set("n", "", function() ui.nav_file(5) end) end, }