Skip to content

Commit

Permalink
docs: list nvim-notify as optional dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgrieser committed Sep 28, 2023
1 parent 5a2b56d commit 6da1d56
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,19 @@ Lightweight and nimble git client for nvim.
-- lazy.nvim
{
"chrisgrieser/nvim-tinygit",
dependencies = "stevearc/dressing.nvim",
dependencies = {
"stevearc/dressing.nvim",
"rcarriga/nvim-notify", -- optional, for nice notifications
},
},

-- packer
use {
"chrisgrieser/nvim-tinygit",
requires = "stevearc/dressing.nvim",
requires = {
"stevearc/dressing.nvim",
"rcarriga/nvim-notify", -- optional, for nice notifications
},
}
```

Expand Down

0 comments on commit 6da1d56

Please sign in to comment.