add render-markdown plugin

This commit is contained in:
Savosin Denis
2025-11-21 18:29:01 +07:00
parent 400c4e0571
commit 43f3d5d437
3 changed files with 30 additions and 18 deletions

View File

@@ -13,12 +13,22 @@ return {
end,
},
{
"mistweaverco/kulala.nvim",
ft = {"http", "rest"},
opts = {
global_keymaps = true,
global_keymaps_prefix = "<leader>k",
kulala_keymaps_prefix = "",
},
"mistweaverco/kulala.nvim",
ft = {"http", "rest"},
opts = {
global_keymaps = true,
global_keymaps_prefix = "<leader>k",
kulala_keymaps_prefix = "",
},
},
{
'MeanderingProgrammer/render-markdown.nvim',
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.icons' }, -- if you use standalone mini plugins
ft = { "markdown", "vimwiki" },
---@module 'render-markdown'
---@type render.md.UserConfig
opts = {
render_modes = { 'n', 'c', 't' },
},
}
}