feat: add some markdown related plugins.

This commit is contained in:
CronyAkatsuki 2025-11-03 21:13:25 +01:00
parent 81d6442841
commit 14dbe77db4
3 changed files with 26 additions and 0 deletions

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

@ -0,0 +1,13 @@
vim.pack.add({
{ src = "https://github.com/tadmccorkle/markdown.nvim" },
{ src = "https://github.com/MeanderingProgrammer/render-markdown.nvim" },
{ src = "https://github.com/Kicamon/markdown-table-mode.nvim" },
})
require("render-markdown").setup({
completions = { lsp = { enabled = true, } },
})
require("markdown").setup()
require("markdown-table-mode").setup()