⚙️ config(nvim): add new keymaps for prev and next harpoon file
This commit is contained in:
parent
f2cfbd6110
commit
c26c618298
1 changed files with 2 additions and 0 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Reference in a new issue