Moved to render markdown plugin

This commit is contained in:
2024-09-30 19:22:24 +02:00
parent fc0dd24fbe
commit 536f3d67ec
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
--- @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,
}

View File

@@ -17,6 +17,7 @@ return {
},
{
"OXY2DEV/markview.nvim",
enabled = false,
dependencies = {
"nvim-tree/nvim-web-devicons",
},