From b9564a9dc3146f14c6e07dd123fbb3586db46e43 Mon Sep 17 00:00:00 2001 From: Aaron Weinberger Date: Thu, 25 Jul 2024 19:06:03 -0400 Subject: [PATCH] Add markdown plugin --- lua/custom/plugins/markdown.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lua/custom/plugins/markdown.lua diff --git a/lua/custom/plugins/markdown.lua b/lua/custom/plugins/markdown.lua new file mode 100644 index 00000000..29f79446 --- /dev/null +++ b/lua/custom/plugins/markdown.lua @@ -0,0 +1,7 @@ +return { + 'MeanderingProgrammer/markdown.nvim', + main = "render-markdown", + opts = {}, + name = 'render-markdown', -- Only needed if you have another plugin named markdown.nvim + dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons +} \ No newline at end of file