How to add plenary plugin using lazy.nvim

86 Views Asked by At

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

1

There are 1 best solutions below

0
lcheylus On BEST ANSWER

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

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