feat: added harpoon and oil

This commit is contained in:
s-prechtl 2024-03-06 00:05:08 +01:00
parent c98e3cf316
commit 2a7c1c70cd
4 changed files with 52 additions and 215 deletions

View file

@ -0,0 +1,36 @@
return {
'ThePrimeagen/harpoon',
branch = 'harpoon2',
dependencies = { 'nvim-lua/plenary.nvim' },
opts = {},
config = function()
local harpoon = require('harpoon').setup()
vim.keymap.set('n', '<leader>a', function()
harpoon:list():append()
end)
vim.keymap.set('n', '<C-e>', function()
harpoon.ui:toggle_quick_menu(harpoon:list())
end)
vim.keymap.set('n', '<C-h>', function()
harpoon:list():select(1)
end)
vim.keymap.set('n', '<C-t>', function()
harpoon:list():select(2)
end)
vim.keymap.set('n', '<C-n>', function()
harpoon:list():select(3)
end)
vim.keymap.set('n', '<C-s>', function()
harpoon:list():select(4)
end)
-- Toggle previous & next buffers stored within Harpoon list
vim.keymap.set('n', '<C-S-P>', function()
harpoon:list():prev()
end)
vim.keymap.set('n', '<C-S-N>', function()
harpoon:list():next()
end)
end,
}