mirror of
https://github.com/bgrolleman/dotfiles.git
synced 2025-12-06 05:45:24 +01:00
Lots of LSP lessons
This commit is contained in:
23
nvim/lua/plugins/render-markdown.lua
Normal file
23
nvim/lua/plugins/render-markdown.lua
Normal file
@@ -0,0 +1,23 @@
|
||||
return {
|
||||
"MeanderingProgrammer/render-markdown.nvim",
|
||||
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" }, -- if you use the mini.nvim suite
|
||||
---@module 'render-markdown'
|
||||
---@type render.md.UserConfig
|
||||
opts = {},
|
||||
ft = { "markdown" },
|
||||
config = function()
|
||||
require("render-markdown").setup({
|
||||
completions = { lsp = { enabled = true } },
|
||||
preset = "lazy",
|
||||
heading = {
|
||||
enabled = true,
|
||||
},
|
||||
checkbox = {
|
||||
enabled = true,
|
||||
},
|
||||
wikilinks = {
|
||||
enabled = true,
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user