8 lines
147 B
Lua
8 lines
147 B
Lua
local status, telescope = pcall(require, "telescope")
|
|
if (not status) then
|
|
print("Telescope is not installed")
|
|
return
|
|
end
|
|
|
|
telescope.setup({})
|