summaryrefslogtreecommitdiffstatshomepage
path: root/nvim/lua/plugins/project.lua
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-03-19 14:27:18 -0500
committerToby Vincent <tobyv13@gmail.com>2022-03-19 14:27:18 -0500
commit209c15c008251cd96f0d4ae6a4c797a1ccb1e9bd (patch)
treee4bc0a7e2a0aea5c1901423910d88ebc72e35d82 /nvim/lua/plugins/project.lua
parent95d6897c7ae05074a4c034d180c834c8534a2582 (diff)
feat: nvim working mostly
Diffstat (limited to 'nvim/lua/plugins/project.lua')
-rw-r--r--nvim/lua/plugins/project.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/nvim/lua/plugins/project.lua b/nvim/lua/plugins/project.lua
new file mode 100644
index 0000000..810d2bd
--- /dev/null
+++ b/nvim/lua/plugins/project.lua
@@ -0,0 +1,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') \ No newline at end of file