Add render-markdown.nvim for inline markdown rendering

This commit is contained in:
Joe Sinopoli 2026-04-04 00:40:27 -04:00
parent 9c23e42cb8
commit 4bb0089b39
1 changed files with 9 additions and 1 deletions

View File

@ -2,4 +2,12 @@
-- I promise not to create any merge conflicts in this directory :) -- I promise not to create any merge conflicts in this directory :)
-- --
-- See the kickstart.nvim README for more information -- See the kickstart.nvim README for more information
return {} -- All .lua files in this directory will be automatically loaded by lazy.nvim
return {
{
'MeanderingProgrammer/render-markdown.nvim',
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' },
ft = { 'markdown' },
opts = {},
},
}