dot/.config/nvim/lua/plugins/harpoon.lua

14 lines
227 B
Lua
Raw Permalink Normal View History

2023-08-29 22:06:35 +02:00
return {
{
'ThePrimeagen/harpoon',
config = function()
require('harpoon').setup({
global_settings = {
save_on_toggle = true,
save_on_change = true,
},
})
end,
}
}