diff --git a/lua/astrocommunity/project/project-nvim/project-nvim.lua b/lua/astrocommunity/project/project-nvim/project-nvim.lua index 6803c7133..8f8722489 100644 --- a/lua/astrocommunity/project/project-nvim/project-nvim.lua +++ b/lua/astrocommunity/project/project-nvim/project-nvim.lua @@ -1,10 +1,9 @@ return { - "ahmedkhalf/project.nvim", - event = "VeryLazy", - dependencies = "nvim-telescope/telescope.nvim", - opts = { ignore_lsp = { "lua_ls" } }, - config = function(_, opts) - require("project_nvim").setup(opts) - require("telescope").load_extension "projects" - end, + { + "ahmedkhalf/project.nvim", + event = "VeryLazy", + opts = { ignore_lsp = { "lua_ls" } }, + config = function(_, opts) require("project_nvim").setup(opts) end, + }, + { "nvim-telescope/telescope.nvim", opts = function() require("telescope").load_extension "projects" end }, }