mirror of
https://github.com/cap153/nvim.git
synced 2025-12-26 19:25:01 +08:00
14 lines
395 B
Lua
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 },
|
|
},
|
|
}
|