nvim-lsp-file-operations Lazy spec
doctorfree opened this issue · 1 comments
doctorfree commented
It looks like the Lazy spec for nvim-lsp-file-operations
is incorrect. Maybe copied the Packer config?
I think the following entry in lua/config/plugins.lua
:
{
"antosha417/nvim-lsp-file-operations",
event = "LspAttach",
requires = {
{ "nvim-lua/plenary.nvim" },
{ "kyazdani42/nvim-tree.lua" },
},
config = function()
require("lsp-file-operations").setup()
end
},
should be changed to:
{
"antosha417/nvim-lsp-file-operations",
event = "LspAttach",
dependencies = {
{ "nvim-lua/plenary.nvim" },
{ "nvim-tree/nvim-tree.lua" },
},
config = function()
require("lsp-file-operations").setup()
end,
},
ecosse3 commented
@doctorfree Thanks! Fixed