diff --git a/lua/plugins/image.lua b/lua/plugins/image.lua new file mode 100644 index 0000000..9790255 --- /dev/null +++ b/lua/plugins/image.lua @@ -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, +}