14 lines
257 B
Lua
14 lines
257 B
Lua
require("project_nvim").setup({
|
|
patterns = {
|
|
".git",
|
|
"package.json",
|
|
".terraform",
|
|
"go.mod",
|
|
"requirements.yml",
|
|
"pyrightconfig.json",
|
|
"pyproject.toml",
|
|
},
|
|
-- detection_methods = { "lsp", "pattern" },
|
|
detection_methods = { "pattern" },
|
|
})
|