unix-config/.config/nvim/plugin/telescope.lua
2024-08-17 09:14:49 +10:00

8 lines
147 B
Lua

local status, telescope = pcall(require, "telescope")
if (not status) then
print("telescope is not installed")
return
end
telescope.setup({})