Skip to content

Commit

Permalink
Add installation guide for lazy.nvim users
Browse files Browse the repository at this point in the history
closes #20
(thanks to @kimusan)
  • Loading branch information
malkoG committed Aug 24, 2023
1 parent 95a2b02 commit 962fe09
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ mastodon.nvim is Mastodon Client for Neovim.

## Installation

### using packer.nvim

If you are using packer.nvim, you can install this plugin as below:

```lua
Expand All @@ -54,6 +56,26 @@ use {
}
```

### using lazy.nvim

If you are using lazy.nvim, you can install this plugin as below:

```lua
{
"kode-team/mastodon.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"rcarriga/nvim-notify",
"kkharji/sqlite.lua",
},
config = function()
require("mastodon").setup()
end
}
```

(thanks to @kimusan)

## Usage


Expand Down

0 comments on commit 962fe09

Please sign in to comment.