⚙️ config(nvim): add new keymaps for prev and next harpoon file

This commit is contained in:
Sergio Laín 2023-12-22 12:45:23 +01:00
parent f2cfbd6110
commit c26c618298
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -17,6 +17,8 @@ return {
{ "<leader>h9", function() require("harpoon.ui").nav_file(9) end, desc = "File 9" },
{ "]H", function() require("harpoon.ui").nav_next() end, desc = "Next Harpoon File" },
{ "[H", function() require("harpoon.ui").nav_prev() end, desc = "Prev Harpoon File" },
{ "<M-]>", function() require("harpoon.ui").nav_next() end, desc = "Next Harpoon File" },
{ "<M-[>", function() require("harpoon.ui").nav_prev() end, desc = "Prev Harpoon File" },
},
opts = {
globalsettings = {