diff options
| author | Mohammad Reza Karimi <m.r.karimi.j@gmail.com> | 2026-01-20 15:55:27 -0500 |
|---|---|---|
| committer | Mohammad Reza Karimi <m.r.karimi.j@gmail.com> | 2026-01-20 15:55:27 -0500 |
| commit | aa5717f00fd14430c80939a68d7107c26de6e554 (patch) | |
| tree | 784e99d9b018e0554369c41cb33e2e195e28d3c6 /plugin/plugins/rendermark.lua | |
first commit
Diffstat (limited to 'plugin/plugins/rendermark.lua')
| -rw-r--r-- | plugin/plugins/rendermark.lua | 11 |
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, +-- }) |
