From ce67b40cfc06b4ca3b7105ffd92e158f1a6de8b0 Mon Sep 17 00:00:00 2001 From: Nydragon <6582485n@proton.me> Date: Mon, 13 Feb 2023 16:18:51 +0100 Subject: [PATCH] add image rendering --- nvim/lua/image-config.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 nvim/lua/image-config.lua diff --git a/nvim/lua/image-config.lua b/nvim/lua/image-config.lua new file mode 100644 index 0000000..423c61b --- /dev/null +++ b/nvim/lua/image-config.lua @@ -0,0 +1,12 @@ +require('image').setup { + render = { + min_padding = 5, + show_label = true, + use_dither = true, + foreground_color = true, + background_color = true, + }, + events = { + update_on_nvim_resize = true, + }, +}