Skip to content

Commit e40de79

Browse files
committed
add project-nvim plugin
1 parent 38b3fd5 commit e40de79

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
return {
2+
'ahmedkhalf/project.nvim',
3+
config = function()
4+
require('project_nvim').setup {
5+
patterns = {
6+
-- git
7+
'.git',
8+
-- clojure & babashka
9+
'deps.edn',
10+
'project.edn',
11+
'bb.edn',
12+
-- java
13+
'pom.xml',
14+
-- go
15+
'go.mod',
16+
},
17+
silent_chdir = false,
18+
}
19+
end,
20+
}

0 commit comments

Comments
 (0)