mirror of
https://github.com/tiyn/dotfiles.git
synced 2026-03-28 18:34:46 +01:00
18 lines
350 B
Lua
18 lines
350 B
Lua
return {
|
|
-- improved display for markdown files
|
|
"MeanderingProgrammer/render-markdown.nvim",
|
|
dependencies = {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
"nvim-tree/nvim-web-devicons",
|
|
},
|
|
---@module 'render-markdown'
|
|
---@type render.md.UserConfig
|
|
opts = {
|
|
completions = {
|
|
lsp = {
|
|
enabled = true,
|
|
},
|
|
},
|
|
},
|
|
}
|