feat(update): update

This commit is contained in:
darwincereska
2025-12-01 15:17:21 -05:00
parent fd83a29f1e
commit de8c6245ec
31 changed files with 13 additions and 13 deletions

25
lua/plugins/ui-image.lua Normal file
View File

@@ -0,0 +1,25 @@
return {
"3rd/image.nvim",
config = function()
require("image").setup({
backend = "kitty",
processor = "magick_cli",
integrations = {
markdown = {
enabled = true,
clear_in_insert_mode = true,
download_remote_images = true,
only_render_image_at_cursor = true,
floating_windows = false,
filetypes = { "markdown", "vimwiki"},
}
},
scale_factor = 1.0,
max_width = nil,
max_height = nil,
max_height_window_percentage = 50,
max_width_window_percentage = nil,
window_overlap_clear_enabled = false
})
end
}