nvim/lua/plugins/harpoon.lua

11 lines
238 B
Lua
Raw Normal View History

2024-08-27 20:26:51 +05:30
---@type LazySpec
return {
"ThePrimeagen/harpoon",
branch = "harpoon2",
dependencies = { "nvim-lua/plenary.nvim", "nvim-telescope/telescope.nvim" },
config = function()
local harpoon = require("harpoon")
harpoon:setup({})
end,
}