neovimneovim-plugin

How to add plenary plugin using lazy.nvim


Here I only see instructions to use plug and packer to install this plugin: https://github.com/nvim-lua/plenary.nvim


Solution

  • plenary.nvim plugin can be installed with lazy.nvim plugin manager via a simple config:

    require("lazy").setup({
      "nvim-lua/plenary.nvim",
    })