gbprod / phpactor.nvim

Lua version of the Phpactor vim plugin to take advantage of the latest Neovim features
73 stars 7 forks source link

how to install it using Lazy? #36

Closed ahmedsayedabdelsalam closed 6 months ago

gbprod commented 6 months ago

you can install this plugin using lazy with this config :

{
  {
    "gbprod/phpactor.nvim",
    build = function()
      require("phpactor.handler.update")()
    end,
    dependencies = {
      "nvim-lua/plenary.nvim", 
      "neovim/nvim-lspconfig"
    },
    opts = {},
  },
}

I will update the README

ahmedsayedabdelsalam commented 5 months ago

you can install this plugin using lazy with this config :

{
  {
    "gbprod/phpactor.nvim",
    build = function()
      require("phpactor.handler.update")()
    end,
    dependencies = {
      "nvim-lua/plenary.nvim", 
      "neovim/nvim-lspconfig"
    },
    opts = {},
  },
}

I will update the README

thanks 🙏