33 lines
645 B
Lua
33 lines
645 B
Lua
return {
|
|
|
|
{
|
|
|
|
"ahmedkhalf/project.nvim",
|
|
dependencies = {
|
|
"nvim-telescope/telescope.nvim",
|
|
},
|
|
config = function()
|
|
require("project_nvim").setup({
|
|
-- your configuration comes here
|
|
-- or leave it empty to use the default settings
|
|
-- refer to the configuration section below
|
|
--
|
|
-- All the patterns used to detect root dir, when **"pattern"** is in
|
|
-- detection_methods
|
|
patterns = {
|
|
".git",
|
|
"_darcs",
|
|
".hg",
|
|
".bzr",
|
|
".svn",
|
|
"Makefile",
|
|
"package.json",
|
|
"pyproject.toml",
|
|
"poetry.lock",
|
|
},
|
|
})
|
|
require("telescope").load_extension("projects")
|
|
end,
|
|
},
|
|
}
|