blob: fd44e4c352c315e63911463eb8bcba29a50e0105 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
local status_ok, project = pcall(require, "project_nvim")
if not status_ok then
return
end
project.setup {
detection_methods = { "pattern" },
patterns = { ".git", "_darcs", ".hg", ".bzr", ".svn", "Makefile", "package.json" },
show_hidden = false,
}
|