This commit is contained in:
Yaser Alraddadi 2025-02-16 23:25:53 +03:00
parent 88adad6be6
commit e3fd03ecbd
No known key found for this signature in database
GPG key ID: 808212144E6DBE90
2 changed files with 3 additions and 3 deletions

View file

@ -5,10 +5,10 @@ return {
dependencies = { 'nvim-lua/plenary.nvim' },
init = function()
local harpoon = require 'harpoon'
vim.keymap.set('n', '<leader>hh', function()
vim.keymap.set('n', '<leader>jj', function()
harpoon.ui:toggle_quick_menu(harpoon:list())
end)
vim.keymap.set('n', '<leader>ha', function()
vim.keymap.set('n', '<leader>ja', function()
harpoon:list():add()
end)