12 lines
221 B
Lua
12 lines
221 B
Lua
local status_ok, telescope = pcall(require, "telescope")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
local h_status_ok, harpoon = pcall(require, "harpoon")
|
|
if not h_status_ok then
|
|
return
|
|
end
|
|
|
|
telescope.load_extension "harpoon"
|