summaryrefslogtreecommitdiffstats
path: root/nvim/lua/user/project.lua
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-05-13 21:38:36 +0100
committerMatthew Lemon <y@yulqen.org>2023-05-13 21:38:36 +0100
commit0872d52e7127434a1a0cddaa30510f42a1bf22c1 (patch)
tree0300a741c9812d4ade1ec7ffd55b15a66e17684b /nvim/lua/user/project.lua
parente6fd7b60e1d6e7869baed548ffbd620d8d3e32b9 (diff)
Adds a neovim from scratch neovim scratch
Diffstat (limited to 'nvim/lua/user/project.lua')
-rw-r--r--nvim/lua/user/project.lua29
1 files changed, 29 insertions, 0 deletions
diff --git a/nvim/lua/user/project.lua b/nvim/lua/user/project.lua
new file mode 100644
index 0000000..a7aac6f
--- /dev/null
+++ b/nvim/lua/user/project.lua
@@ -0,0 +1,29 @@
+local M = {
+ "ahmedkhalf/project.nvim",
+ commit = "685bc8e3890d2feb07ccf919522c97f7d33b94e4",
+ dependencies = {
+ {
+ "nvim-telescope/telescope.nvim",
+ commit = "203bf5609137600d73e8ed82703d6b0e320a5f36",
+ event = "Bufenter",
+ cmd = { "Telescope" },
+ },
+ },
+}
+
+function M.config()
+ local project = require "project_nvim"
+ project.setup {
+
+ -- detection_methods = { "lsp", "pattern" }, -- NOTE: lsp detection will get annoying with multiple langs in one project
+ detection_methods = { "pattern" },
+
+ -- patterns used to detect root dir, when **"pattern"** is in detection_methods
+ patterns = { ".git", "Makefile", "package.json" },
+ }
+
+ local telescope = require "telescope"
+ telescope.load_extension "projects"
+end
+
+return M