diff --git a/lua/taken/plugins/markdown.lua b/lua/taken/plugins/markdown.lua new file mode 100644 index 0000000..387e08a --- /dev/null +++ b/lua/taken/plugins/markdown.lua @@ -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, +} diff --git a/lua/taken/plugins/otherplugins.lua b/lua/taken/plugins/otherplugins.lua index d6f603c..7020018 100644 --- a/lua/taken/plugins/otherplugins.lua +++ b/lua/taken/plugins/otherplugins.lua @@ -17,6 +17,7 @@ return { }, { "OXY2DEV/markview.nvim", + enabled = false, dependencies = { "nvim-tree/nvim-web-devicons", },