18 lines
416 B
Lua
18 lines
416 B
Lua
return {
|
|
"ahmedkhalf/project.nvim",
|
|
config = function()
|
|
require("project_nvim").setup({
|
|
patterns = {
|
|
".git",
|
|
".hg",
|
|
".svn",
|
|
"Makefile",
|
|
"package.json",
|
|
"Cargo.toml",
|
|
"go.mod",
|
|
".clang-tidy",
|
|
".clang-format"
|
|
},
|
|
})
|
|
end,
|
|
}
|