From a7e66550063cf0a5720adccc02238d856f9708ab Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Tue, 4 Mar 2025 14:31:59 +0100 Subject: [PATCH] feat(nvim): add render-markdown plugin --- neovim/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/neovim/default.nix b/neovim/default.nix index 8422c2a..126cdf7 100644 --- a/neovim/default.nix +++ b/neovim/default.nix @@ -38,6 +38,7 @@ nvim-treesitter-textobjects nvim-ts-context-commentstring markdown-preview-nvim # use({ "iamcco/markdown-preview.nvim", run = ":call mkdp#util#install()" }) + render-markdown-nvim toggleterm-nvim nvim-notify comment-nvim @@ -185,7 +186,7 @@ layout = "float", width = 0.8, height = 0.8, - } + }, }) require("diffview").setup({ @@ -196,6 +197,10 @@ } } }) + + require("render-markdown").setup({ + file_types = { "markdown", "vimwiki", "copilot-chat" }, + }) ''; }; };