mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
10 lines
307 B
Lua
10 lines
307 B
Lua
-- Plugin to improve viewing Markdown files in Neovim
|
|
-- https://github.com/MeanderingProgrammer/render-markdown.nvim
|
|
return {
|
|
"MeanderingProgrammer/render-markdown.nvim",
|
|
opts = {
|
|
file_types = { "markdown", "mdx" },
|
|
},
|
|
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" },
|
|
}
|