mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
15 lines
464 B
Lua
15 lines
464 B
Lua
return {
|
|
"ahmedkhalf/project.nvim",
|
|
config = function()
|
|
require("project_nvim").setup({
|
|
detection_methods = { "lsp", "pattern" },
|
|
patterns = { ".git", "Makefile", "package.json" },
|
|
sync_root_with_cwd = true,
|
|
silent_chdir = true,
|
|
scope_chdir = "global",
|
|
})
|
|
|
|
require("telescope").load_extension("projects")
|
|
end,
|
|
dependencies = { "nvim-telescope/telescope.nvim" },
|
|
}
|