diff --git a/.config/nvim/lua/specs/render_markdown.lua b/.config/nvim/lua/specs/render_markdown.lua new file mode 100644 index 00000000..8d4c881e --- /dev/null +++ b/.config/nvim/lua/specs/render_markdown.lua @@ -0,0 +1,12 @@ +local Plugin = { 'MeanderingProgrammer/render-markdown.nvim' } + +Plugin.name = 'render-markdown' + +Plugin.opts = {} + +Plugin.dependencies = { + { 'nvim-treesitter/nvim-treesitter', name = 'treesitter' }, + { 'nvim-tree/nvim-web-devicons', name = 'devicons' }, +} + +return Plugin