From 4f9ae40e3c99407acbb274d671a90798fd40ced4 Mon Sep 17 00:00:00 2001 From: Dung Huynh Duc Date: Fri, 1 Nov 2024 21:11:15 +0800 Subject: [PATCH] feat(deps): add optional markdown renderer dependency --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 276ec8e..9fb2630 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,15 @@ Add the following configuration to your Neovim setup with [lazy.nvim](https://gi dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim", - "nvim-treesitter/nvim-treesitter" + "nvim-treesitter/nvim-treesitter", + -- Optional, for markdown rendering with render-markdown.nvim + { + 'MeanderingProgrammer/render-markdown.nvim', + opts = { + file_types = { "markdown" }, + }, + ft = { "markdown" }, + }, }, ft = "hurl", opts = {