mirror of
https://github.com/ThePrimeagen/harpoon.git
synced 2025-07-13 17:40:25 +00:00
12 lines
278 B
Lua
12 lines
278 B
Lua
local has_telescope, telescope = pcall(require, "telescope")
|
|
|
|
if not has_telescope then
|
|
error("harpoon.nvim requires nvim-telescope/telescope.nvim")
|
|
end
|
|
|
|
return telescope.register_extension({
|
|
exports = {
|
|
marks = require("telescope._extensions.marks"),
|
|
},
|
|
})
|