nvim: Configure image.nvim lazyness

Set up to load on the file types it affects.
This commit is contained in:
Marty Oehme 2023-12-10 09:07:58 +01:00
parent c550a9d514
commit ea7b2e632e
Signed by: Marty
GPG Key ID: EDBF2ED917B2EF6A
1 changed files with 3 additions and 4 deletions

View File

@ -22,8 +22,7 @@ return {
},
})
end,
lazy = false,
ft = "quarto",
ft = { "quarto" },
},
-- REPL work
@ -39,13 +38,13 @@ return {
markdown = {
enabled = true,
download_remote_images = true,
only_render_image_at_cursor = false,
only_render_image_at_cursor = true,
filetypes = { "markdown", "vimwiki", "quarto" },
},
},
})
end,
lazy = false,
ft = { "markdown", "vimwiki", "quarto" },
},
{
"benlubas/molten-nvim",