14 lines
524 B
Lua
14 lines
524 B
Lua
return {
|
|
{
|
|
"MeanderingProgrammer/markdown.nvim",
|
|
name = "render-markdown", -- Only needed if you have another plugin named markdown.nvim
|
|
dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' }, -- if you use the mini.nvim suite
|
|
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.icons' }, -- if you use standalone mini plugins
|
|
opts = {
|
|
file_types = { 'markdown' },
|
|
sign = {
|
|
enabled = false,
|
|
},
|
|
},
|
|
},
|
|
}
|