moved custom plugins to seperate folder

This commit is contained in:
Paul 2025-05-14 16:53:04 +02:00
parent 65c756629e
commit 7f6cc1833c
8 changed files with 126 additions and 116 deletions

View file

@ -0,0 +1,30 @@
return {
'ThePrimeagen/harpoon',
branch = 'harpoon2',
dependencies = {
'nvim-lua/plenary.nvim',
},
lazy = false,
config = function()
require('harpoon'):setup({})
end,
keys = {
{
'<leader>a',
function()
require('harpoon'):list():add()
end,
mode = 'n',
desc = '[A]dd to Harpoon',
},
{
'<C-e>',
function()
local files = require('harpoon'):list() or {}
require('harpoon').ui:toggle_quick_menu(files)
end,
desc = 'Toggle Harpoon [E]xplorer',
},
},
}