Skip to content

Commit a1d899c

Browse files
Никита Августановronedier
authored andcommitted
added project.nvim to config
1 parent 1a5b06c commit a1d899c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

lua/custom/plugins/project.lua

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
return {
2+
'DrKJeff16/project.nvim',
3+
version = false, -- Get the latest release
4+
dependencies = { -- OPTIONAL
5+
'nvim-lua/plenary.nvim',
6+
'nvim-telescope/telescope.nvim',
7+
'ibhagwan/fzf-lua',
8+
},
9+
---@module 'project'
10+
11+
---@type Project.Config.Options
12+
opts = {},
13+
config = function()
14+
require('project').setup()
15+
require('telescope').load_extension 'projects'
16+
end,
17+
}

0 commit comments

Comments
 (0)