Skip to content

Commit

Permalink
docs: add lazy.nvim installation instruction
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeLagrange authored and ldelossa committed Nov 7, 2023
1 parent d508b13 commit 956957e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,26 @@ are required for this plugin to work.
`gh.nvim` relies on [Litee.nvim](https://github.com/ldelossa/litee.nvim). To setup `gh.nvim`
with the default configuration add the following:

Using [lazy.nvim](https://github.com/folke/lazy.nvim)

```lua
{
"ldelossa/gh.nvim",
dependencies = {
{
"ldelossa/litee.nvim",
config = function()
require("litee.lib").setup()
end,
},
},
config = function()
require("litee.gh").setup()
end,
}

```

Using [packer.nvim](https://github.com/wbthomason/packer.nvim)

```lua
Expand Down

0 comments on commit 956957e

Please sign in to comment.