From 9f415f8ccc651b9bd670338d8538e257a6ae524b Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 20 Jun 2025 23:16:46 +0200 Subject: [PATCH] nvim: Fix render-markdown naming scheme Old versions of render-markdown.nvim suggested renaming it to another plugin name, but this seems to not be the case anymore. I removed both for the time being and it fixed a long-standing issue I had with the plugin. --- nvim/.config/nvim/lua/plugins/prose.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/nvim/.config/nvim/lua/plugins/prose.lua b/nvim/.config/nvim/lua/plugins/prose.lua index d45de60..cef2108 100644 --- a/nvim/.config/nvim/lua/plugins/prose.lua +++ b/nvim/.config/nvim/lua/plugins/prose.lua @@ -85,7 +85,6 @@ local prose_plugs = { -- displays prettier md rendering { "MeanderingProgrammer/render-markdown.nvim", - main = "render-markdown", opts = { file_types = { "markdown", "codecompanion" }, render_modes = { "n", "c", "i" }, @@ -108,7 +107,6 @@ local prose_plugs = { }, }, }, - name = "render-markdown", -- Only needed if you have another plugin named markdown.nvim dependencies = { "nvim-treesitter/nvim-treesitter", "nvim-tree/nvim-web-devicons",