add render-markdown plugin

This commit is contained in:
xfy
2024-09-09 09:17:30 +08:00
parent 647f817d37
commit 9b67f20251

View File

@ -458,6 +458,23 @@ local plugins = {
if vim.fn.executable "npx" then vim.g.mkdp_filetypes = { "markdown" } end
end,
},
{
"MeanderingProgrammer/render-markdown.nvim",
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' },
opts = {
file_types = { "markdown", "norg", "rmd", "org" },
code = {
sign = false,
width = "block",
right_pad = 1,
},
heading = {
sign = false,
icons = {},
},
},
ft = { "markdown", "norg", "rmd", "org" },
},
-- git
{
"sindrets/diffview.nvim",