unix-config/.config/nvim/plugin/telescope.lua
2024-08-16 21:55:29 +10:00

10 lines
188 B
Lua

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