mirror of https://github.com/LazyVim/starter
22 lines
367 B
Lua
22 lines
367 B
Lua
return {
|
|
{
|
|
"opdavies/toggle-checkbox.nvim",
|
|
lazy = true,
|
|
ft = "markdown",
|
|
},
|
|
{
|
|
"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,
|
|
},
|
|
}
|