markdown: add plugin for markdown formatting in view mode

This commit is contained in:
Paul Campbell 2024-05-15 09:51:54 +01:00
parent ca4aeb555a
commit 5f2cecb1c9

8
lua/plugins/markdown.lua Normal file
View file

@ -0,0 +1,8 @@
return {
{
"MeanderingProgrammer/markdown.nvim",
name = "render-markdown", -- Only needed if you have another plugin named markdown.nvim
dependencies = { "nvim-treesitter/nvim-treesitter" },
config = function() require("render-markdown").setup {} end,
},
}