nvim: Configure image.nvim lazyness
Set up to load on the file types it affects.
This commit is contained in:
parent
c550a9d514
commit
ea7b2e632e
1 changed files with 3 additions and 4 deletions
|
@ -22,8 +22,7 @@ return {
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
lazy = false,
|
ft = { "quarto" },
|
||||||
ft = "quarto",
|
|
||||||
},
|
},
|
||||||
|
|
||||||
-- REPL work
|
-- REPL work
|
||||||
|
@ -39,13 +38,13 @@ return {
|
||||||
markdown = {
|
markdown = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
download_remote_images = true,
|
download_remote_images = true,
|
||||||
only_render_image_at_cursor = false,
|
only_render_image_at_cursor = true,
|
||||||
filetypes = { "markdown", "vimwiki", "quarto" },
|
filetypes = { "markdown", "vimwiki", "quarto" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
lazy = false,
|
ft = { "markdown", "vimwiki", "quarto" },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"benlubas/molten-nvim",
|
"benlubas/molten-nvim",
|
||||||
|
|
Loading…
Reference in a new issue