added project.nvim to config

This commit is contained in:
Никита Августанов 2025-11-07 00:35:31 +04:00 committed by Nikita Avgustanov
parent 1a5b06c234
commit a1d899c3d2
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
return {
'DrKJeff16/project.nvim',
version = false, -- Get the latest release
dependencies = { -- OPTIONAL
'nvim-lua/plenary.nvim',
'nvim-telescope/telescope.nvim',
'ibhagwan/fzf-lua',
},
---@module 'project'
---@type Project.Config.Options
opts = {},
config = function()
require('project').setup()
require('telescope').load_extension 'projects'
end,
}