From 9fcc44f9aed2e1a16e9825ad718d187047c1c2f6 Mon Sep 17 00:00:00 2001 From: Yaser Alraddadi Date: Sun, 16 Feb 2025 22:15:35 +0300 Subject: [PATCH] update --- lua/custom/plugins/harpoon.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/custom/plugins/harpoon.lua b/lua/custom/plugins/harpoon.lua index f7fe3ec3..decb2ab5 100644 --- a/lua/custom/plugins/harpoon.lua +++ b/lua/custom/plugins/harpoon.lua @@ -34,12 +34,15 @@ return { end) end, config = function() - require('harpoon'):setup { + local harpoon = require 'harpoon' + -- local extensions = require 'harpoon.extensions' + harpoon:setup { settings = { -- sync_on_ui_close = true, save_on_toggle = true, }, } + -- harpoon:extend(extensions.builtins.navigate_with_number()) end, }, }