feat(cfg): add keybind for the 5th cell in the harpoon menu

This commit is contained in:
EGRrqq 2023-11-08 09:01:30 -06:00
parent 91b4aa74f9
commit 413663cdae
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@ return {
vim.keymap.set("n", "<M-2>", function() ui.nav_file(2) end)
vim.keymap.set("n", "<M-3>", function() ui.nav_file(3) end)
vim.keymap.set("n", "<M-4>", function() ui.nav_file(4) end)
vim.keymap.set("n", "<M-5>", function() ui.nav_file(5) end)
end,
}