From d42b13c0c0a1658c57feb38b13e8d9700a4821b3 Mon Sep 17 00:00:00 2001 From: Scott McKendry <39483124+scottmckendry@users.noreply.github.com> Date: Sat, 20 Jul 2024 11:40:10 +1200 Subject: [PATCH] replace markview.nvim with markdown.nvim :recycle: --- nvim/lua/plugins/markdown.lua | 12 ++++++++++++ nvim/lua/plugins/markview.lua | 7 ------- 2 files changed, 12 insertions(+), 7 deletions(-) create mode 100644 nvim/lua/plugins/markdown.lua delete mode 100644 nvim/lua/plugins/markview.lua diff --git a/nvim/lua/plugins/markdown.lua b/nvim/lua/plugins/markdown.lua new file mode 100644 index 0000000..96998ee --- /dev/null +++ b/nvim/lua/plugins/markdown.lua @@ -0,0 +1,12 @@ +return { + "MeanderingProgrammer/markdown.nvim", + ft = "markdown", + name = "render-markdown", + config = function() + require("render-markdown").setup({ + pipe_table = { + border = { "╭", "┬", "╮", "├", "┼", "┤", "╰", "┴", "╯", "│", "─" }, + }, + }) + end, +} diff --git a/nvim/lua/plugins/markview.lua b/nvim/lua/plugins/markview.lua deleted file mode 100644 index 110bb8a..0000000 --- a/nvim/lua/plugins/markview.lua +++ /dev/null @@ -1,7 +0,0 @@ -return { - "OXY2DEV/markview.nvim", - ft = "markdown", - config = function() - require("markview").setup() - end, -}