This commit is contained in:
Yaser Alraddadi 2025-02-16 22:15:35 +03:00
parent d72741b7fe
commit 9fcc44f9ae
No known key found for this signature in database
GPG Key ID: 808212144E6DBE90
1 changed files with 4 additions and 1 deletions

View File

@ -34,12 +34,15 @@ return {
end) end)
end, end,
config = function() config = function()
require('harpoon'):setup { local harpoon = require 'harpoon'
-- local extensions = require 'harpoon.extensions'
harpoon:setup {
settings = { settings = {
-- sync_on_ui_close = true, -- sync_on_ui_close = true,
save_on_toggle = true, save_on_toggle = true,
}, },
} }
-- harpoon:extend(extensions.builtins.navigate_with_number())
end, end,
}, },
} }