nvim-macos/lua/plugins/image.lua

23 lines
375 B
Lua
Raw Normal View History

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,
}