From 563d068b9f7a0a4a7265b99d01ad3a99c05f1277 Mon Sep 17 00:00:00 2001 From: Alberto Maturano Date: Wed, 29 Jan 2025 17:25:37 -0600 Subject: [PATCH] fix: plugin configuration references on readme file - Makes clear `rocks` is a `lazy.nvim` configuration option - Adds `processor = "magick_cli"` as part of the right configuration --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) 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", + } } ```