aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/config/.config/nvim/lua/plugins/langs/markdown.lua
blob: 8c167c4c23ec27093168cadd466ec32bc37c7a5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-- markdown

return {
  { -- https://github.com/MeanderingProgrammer/render-markdown.nvim
    "MeanderingProgrammer/render-markdown.nvim",
    -- Only load when filetype = "markdown"
    ft = "markdown",
    -- 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
    -- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
    ---@module 'render-markdown'
    ---@type render.md.UserConfig
    opts = {},
  },
}