summaryrefslogtreecommitdiff
path: root/plugin/plugins/rendermark.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/plugins/rendermark.lua')
-rw-r--r--plugin/plugins/rendermark.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/plugin/plugins/rendermark.lua b/plugin/plugins/rendermark.lua
new file mode 100644
index 0000000..24e2d16
--- /dev/null
+++ b/plugin/plugins/rendermark.lua
@@ -0,0 +1,11 @@
+-- vim.api.nvim_create_autocmd("FileType", {
+-- pattern = { "markdown" },
+-- once = true,
+-- callback = function()
+-- vim.cmd([[ packadd render-markdown.nvim ]])
+-- require("render-markdown").setup({
+-- enabled = false,
+-- ignore = function(buf) return vim.bo[buf].buftype ~= "nofile" end
+-- })
+-- end,
+-- })