refactor: frontmatter for markdown;

feat: plugin for rendering images in markdown;
feat: pastify;
feat: markdown preview in browser
This commit is contained in:
2025-07-04 23:22:13 +03:00
parent 81d7b870f1
commit 7fc2e5c543
6 changed files with 126 additions and 17 deletions

View File

@@ -0,0 +1,11 @@
return {
{
"iamcco/markdown-preview.nvim",
cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
build = "cd app && npm install",
init = function()
vim.g.mkdp_filetypes = { "markdown" }
end,
ft = { "markdown" },
},
}