fix: added virtualtext back for error messages

This commit is contained in:
Ceferino Patino 2025-05-10 11:31:15 -05:00
commit 951b329f94
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI

View file

@ -46,22 +46,23 @@
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(
vim.lsp.handlers.hover, {
border = _border
border = _border;
}
)
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(
vim.lsp.handlers.signature_help, {
border = _border
border = _border;
}
)
vim.diagnostic.config {
float={border=_border}
float = { border=_border };
virtual_text = true;
};
require('lspconfig.ui.windows').default_options = {
border = _border
border = _border;
}
'';
}