From 8e45632881cc118eba2a355b8b91f05ad931b7e7 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Sat, 19 Jul 2025 15:40:31 +0200 Subject: [PATCH] Remove render markdown plugin --- nvim/default.nix | 2 -- nvim/lua/plugins/copilot.lua | 9 --------- 2 files changed, 11 deletions(-) diff --git a/nvim/default.nix b/nvim/default.nix index a7d9257..98823f5 100644 --- a/nvim/default.nix +++ b/nvim/default.nix @@ -93,7 +93,6 @@ in noice-nvim statuscol-nvim - # telescope-ui-select-nvim (snacks-nvim.overrideAttrs { postPatch = "rm -rf queries"; }) @@ -104,7 +103,6 @@ in nvim-navic virt-column-nvim - render-markdown-nvim codecompanion-nvim # enable this just to signin (used by the chat plugin above) # (copilot-vim.overrideAttrs { diff --git a/nvim/lua/plugins/copilot.lua b/nvim/lua/plugins/copilot.lua index b831abd..41ad978 100644 --- a/nvim/lua/plugins/copilot.lua +++ b/nvim/lua/plugins/copilot.lua @@ -39,13 +39,4 @@ return { require("codecompanion").setup(plug.opts) end, }, - - { - "render-markdown", - ft = { "markdown", "codecompanion" }, - opts = {}, - after = function(plug) - require("render-markdown").setup(plug.opts) - end, - }, }