cap153_nvim/lua/lazy/plugins/render-markdown.lua
2025-04-21 22:18:24 +08:00

14 lines
395 B
Lua

return {
"MeanderingProgrammer/render-markdown.nvim",
ft = { "markdown" },
cond = function()
return vim.bo.filetype ~= "kitty-scrollback"
end,
event = "VeryLazy",
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" }, -- if you use the mini.nvim suite
---@module 'render-markdown'
---@type render.md.UserConfig
opts = {
sign = { enabled = false },
},
}