diff --git a/README.md b/README.md index 523bb7e..f5a0234 100644 --- a/README.md +++ b/README.md @@ -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 = {} + }, + } }) ``` @@ -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", + } } ```