14 lines
401 B
Lua
14 lines
401 B
Lua
return {
|
|
"ahmedkhalf/project.nvim",
|
|
name = "project_nvim",
|
|
event = { "BufReadPre", "BufNewFile" },
|
|
config = true,
|
|
opts = {
|
|
detection_methods = { "lsp", "pattern" },
|
|
patterns = { ".git", "_darcs", ".hg", ".bzr", ".svn", "Makefile", "package.json", "index.norg" },
|
|
ignore_lsp = { "null-ls" },
|
|
show_hidden = true,
|
|
silent_chdir = true,
|
|
},
|
|
}
|