mirror of https://github.com/LazyVim/starter
13 lines
291 B
Lua
13 lines
291 B
Lua
|
return {
|
||
|
"ahmedkhalf/project.nvim",
|
||
|
opts = {},
|
||
|
event = "VeryLazy",
|
||
|
config = function(_, opts)
|
||
|
require("project_nvim").setup(opts)
|
||
|
require("telescope").load_extension("projects")
|
||
|
end,
|
||
|
keys = {
|
||
|
{ "<leader>fp", "<Cmd>Telescope projects<CR>", desc = "Projects" },
|
||
|
},
|
||
|
}
|