summaryrefslogtreecommitdiffstatshomepage
path: root/nvim/lua/plugins/project.lua
blob: 810d2bd6d15ac7e901ff89dde78ef3069b443646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
local status_ok, project = pcall(require, "project_nvim")
if not status_ok then
	return
end

project.setup {}

local tele_status_ok, telescope = pcall(require, "telescope")
if not tele_status_ok then
	return
end

telescope.load_extension('projects')