Oil + harpoon

This commit is contained in:
Alexander 2025-01-09 19:35:42 +01:00
parent 30f933032c
commit 76429ff79e
4 changed files with 15 additions and 2 deletions

View file

@ -30,10 +30,10 @@ return {
end)
-- Toggle previous & next buffers stored within Harpoon list
vim.keymap.set('n', '<C-S-P>', function()
vim.keymap.set('n', '<C-P>', function()
harpoon:list():prev()
end)
vim.keymap.set('n', '<C-S-N>', function()
vim.keymap.set('n', '<C-N>', function()
harpoon:list():next()
end)
end,