2025-07-07 12:20:38 +02:00
|
|
|
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,
|
2025-07-09 14:05:39 +02:00
|
|
|
only_render_image_at_cursor_mode = "inline",
|
|
|
|
floating_windows = false,
|
2025-07-07 12:20:38 +02:00
|
|
|
},
|
|
|
|
html = {
|
|
|
|
enabled = true,
|
|
|
|
},
|
|
|
|
},
|
2025-07-09 14:05:39 +02:00
|
|
|
-- tmux_show_only_in_active_window = true,
|
2025-07-07 12:20:38 +02:00
|
|
|
})
|
|
|
|
end,
|
|
|
|
}
|