added image as already functioning on macos

This commit is contained in:
Joost Agterhoek 2025-07-07 12:20:38 +02:00
parent 59037c787f
commit a4e12d2b09

22
lua/plugins/image.lua Normal file
View File

@ -0,0 +1,22 @@
return {
"3rd/image.nvim",
build = false,
opts = {
rocessor = "magick_cli",
},
config = function()
require("image").setup({
integrations = {
markdown = {
enabled = true,
only_render_image_at_cursor = true,
only_render_image_at_cursor_mode = true,
floating_windows = true,
},
html = {
enabled = true,
},
},
})
end,
}