diff --git a/lua/plugins/markdown-preview.lua b/lua/plugins/markdown-preview.lua new file mode 100644 index 0000000..98eb002 --- /dev/null +++ b/lua/plugins/markdown-preview.lua @@ -0,0 +1,12 @@ +return { + "selimacerbas/markdown-preview.nvim", + dependencies = { "selimacerbas/live-server.nvim" }, + config = function() + require("markdown_preview").setup({ + -- all optional; sane defaults shown + port = 8421, + open_browser = true, + debounce_ms = 300, + }) + end, +}