22 lines
333 B
Lua
22 lines
333 B
Lua
return {
|
|
"3rd/diagram.nvim",
|
|
dependencies = {
|
|
"3rd/image.nvim",
|
|
},
|
|
opts = {},
|
|
config = function()
|
|
require("diagram").setup({
|
|
integrations = {
|
|
require("diagram.integrations.markdown"),
|
|
require("diagram.integrations.neorg"),
|
|
renderer_options = {
|
|
mermaid = {
|
|
background = "#hex",
|
|
theme = "default",
|
|
}
|
|
}
|
|
}
|
|
})
|
|
end
|
|
}
|