mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
19 lines
451 B
Lua
19 lines
451 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", "norg", "rmd", "org" },
|
|
code = {
|
|
sign = false,
|
|
width = "block",
|
|
right_pad = 1,
|
|
},
|
|
heading = {
|
|
sign = false,
|
|
icons = {},
|
|
},
|
|
},
|
|
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" },
|
|
}
|