added project.nvim to config
This commit is contained in:
parent
1a5b06c234
commit
a1d899c3d2
|
|
@ -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,
|
||||
}
|
||||
Loading…
Reference in New Issue