From 28fb8bea8510c3b5bb14463b765ea1da68ec14b0 Mon Sep 17 00:00:00 2001 From: Ruslan Date: Tue, 5 Aug 2025 17:22:12 +0300 Subject: [PATCH] add render-markdown plugin --- lua/crentist/lazy/markdown.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lua/crentist/lazy/markdown.lua diff --git a/lua/crentist/lazy/markdown.lua b/lua/crentist/lazy/markdown.lua new file mode 100644 index 0000000..f1c7332 --- /dev/null +++ b/lua/crentist/lazy/markdown.lua @@ -0,0 +1,12 @@ +return { + 'MeanderingProgrammer/render-markdown.nvim', + dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons + ---@module 'render-markdown' + ---@type render.md.UserConfig + opts = { + completions = { + blink = { enabled = true } + } + }, +} +