Skip to content

Commit

Permalink
docs(plugin): add lazy.nvim install instruction (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
technicalpickles committed Aug 7, 2023
1 parent cbe31f8 commit 0236521
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@

### 🚀 Installation

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

```lua
-- add this to your lua/plugins.lua, lua/plugins/init.lua, or the file you keep your other plugins:
{
'numToStr/Comment.nvim',
opts = {
-- add any options here
},
lazy = false,
}

```

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

```lua
Expand Down

3 comments on commit 0236521

@9mm
Copy link

@9mm 9mm commented on 0236521 Aug 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a reason you recommend lazy = false?

@numToStr
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@9mm Did u read the PR before commenting here?

@9mm
Copy link

@9mm 9mm commented on 0236521 Aug 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@numToStr No, I didn't notice a PR. I see now, thanks!

Please sign in to comment.