feat(nvim): add render-markdown plugin

This commit is contained in:
Michael Mandl 2025-03-04 14:31:59 +01:00
parent d1637e46fc
commit a7e6655006
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2

View file

@ -38,6 +38,7 @@
nvim-treesitter-textobjects
nvim-ts-context-commentstring
markdown-preview-nvim # use({ "iamcco/markdown-preview.nvim", run = ":call mkdp#util#install()" })
render-markdown-nvim
toggleterm-nvim
nvim-notify
comment-nvim
@ -185,7 +186,7 @@
layout = "float",
width = 0.8,
height = 0.8,
}
},
})
require("diffview").setup({
@ -196,6 +197,10 @@
}
}
})
require("render-markdown").setup({
file_types = { "markdown", "vimwiki", "copilot-chat" },
})
'';
};
};