Files
neovim-config/lua/taken/plugins/markdown.lua
2024-09-30 19:24:53 +02:00

18 lines
452 B
Lua

--- @type LazyPluginSpec
return {
"MeanderingProgrammer/render-markdown.nvim",
ft = "markdown",
dependencies = { "nvim-treesitter/nvim-treesitter", "nvim-tree/nvim-web-devicons" },
config = function()
require("render-markdown").setup({
heading = {
width = "block",
},
code = {
sign = true,
width = "block",
},
})
end,
}