replaced markview with markdown

This commit is contained in:
Oliver Hartmann 2024-07-17 06:43:26 +00:00
parent 8de05c209e
commit a404864548
3 changed files with 11 additions and 11 deletions

View File

@ -72,6 +72,7 @@
"plenary.nvim": { "branch": "master", "commit": "50012918b2fc8357b87cff2a7f7f0446e47da174" },
"pretty_hover": { "branch": "master", "commit": "b3840660f379e125cac508d3d2d77cc47b3d5131" },
"rainbow-delimiters.nvim": { "branch": "master", "commit": "b29da4a6061a88270e875b38367d82c04c856128" },
"render-markdown": { "branch": "main", "commit": "3578523f497a8ad3b4a356d1e54e609838ce0922" },
"rustaceanvim": { "branch": "master", "commit": "047f9c9d8cd2861745eb9de6c1570ee0875aa795" },
"todo-comments.nvim": { "branch": "main", "commit": "313b04e5b02d29ab9275c9295ff5e2b73921b0eb" },
"toggleterm.nvim": { "branch": "main", "commit": "066cccf48a43553a80a210eb3be89a15d789d6e6" },

10
lua/plugins/markdown.lua Normal file
View File

@ -0,0 +1,10 @@
return {
'MeanderingProgrammer/markdown.nvim',
dependencies = {
'nvim-treesitter/nvim-treesitter',
'nvim-tree/nvim-web-devicons',
}, -- if you prefer nvim-web-devicons
config = function()
require('render-markdown').setup({})
end,
}

View File

@ -1,11 +0,0 @@
return {
'OXY2DEV/markview.nvim',
version = false,
dependencies = {
'nvim-treesitter/nvim-treesitter',
'nvim-tree/nvim-web-devicons',
},
opts = {
buf_ignore = {},
},
}