starter/lua/plugins/markdown.lua

22 lines
367 B
Lua
Raw Normal View History

return {
{
"opdavies/toggle-checkbox.nvim",
2024-05-15 09:39:12 +08:00
lazy = true,
2024-05-16 10:50:08 +08:00
ft = "markdown",
},
2024-05-15 16:33:46 +08:00
{
"vhyrro/luarocks.nvim",
priority = 1001, -- this plugin needs to run before anything else
opts = {
rocks = { "magick" },
},
},
{
"3rd/image.nvim",
dependencies = { "luarocks.nvim" },
config = function()
-- ...
end,
},
}