fix lsp to and code completion

This commit is contained in:
2025-09-26 23:14:04 -05:00
parent 91fe229e59
commit 42b0e5c64d
13 changed files with 137 additions and 193 deletions

View File

@@ -5,25 +5,22 @@ return {
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
---@module 'render-markdown'
---@type render.md.UserConfig
opts = {},
config = function()
require('render-markdown').setup({
opts = {
completions = { lsp = { enabled = true } },
render_modes = true,
heading = {
width = 'block',
min_width = 81,
min_width = 80,
},
indent = {
code = {
disable_background = { 'diff' },
},
indent = {
enabled = true,
skip_heading = true,
},
sign = {
enabled = true,
},
})
end
},
}