mirror of
https://github.com/tomru/vim.git
synced 2026-03-03 22:47:25 +01:00
15 lines
370 B
Lua
15 lines
370 B
Lua
return {
|
|
{
|
|
'ahmedkhalf/project.nvim',
|
|
config = function()
|
|
require('project_nvim').setup {
|
|
patterns = { '.git', 'Makefile', '=bcr' },
|
|
detection_methods = { 'pattern', 'lsp' },
|
|
silent_chdir = false,
|
|
}
|
|
require('telescope').load_extension 'projects'
|
|
end,
|
|
dependencies = { 'nvim-telescope/telescope.nvim' },
|
|
},
|
|
}
|