Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: plugin configuration references on readme file #275

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,14 +222,15 @@ After you've set up the dependencies, install the `image.nvim` plugin.

```lua
require("lazy").setup({
{
"3rd/image.nvim",
opts = {}
},
}, {
rocks = {
hererocks = true, -- recommended if you do not have global installation of Lua 5.1.
},
spec = {
{
"3rd/image.nvim",
opts = {}
},
}
})
```

Expand Down Expand Up @@ -295,7 +296,9 @@ package.path = package.path .. ";" .. vim.fn.expand("$HOME") .. "/.luarocks/shar
{
"3rd/image.nvim",
build = false, -- so that it doesn't build the rock https://github.com/3rd/image.nvim/issues/91#issuecomment-2453430239
opts = {}
opts = {
processor = "magick_cli",
}
}
```

Expand Down