diff options
Diffstat (limited to 'lua/plugins/markdown.lua')
| -rw-r--r-- | lua/plugins/markdown.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lua/plugins/markdown.lua b/lua/plugins/markdown.lua new file mode 100644 index 0000000..cf87e9d --- /dev/null +++ b/lua/plugins/markdown.lua @@ -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() |
