Restore underline in LSP diagnostics

Using a better colorscheme makes the underlining more useful, as it
doesn't overrides syntax highlighting colors.  Therefore there is no
need to have it turned off.
This commit is contained in:
Dionisio E Alonso 2021-11-01 17:47:30 -03:00
parent d10510cb99
commit 6b3392b79f
1 changed files with 0 additions and 1 deletions

View File

@ -46,7 +46,6 @@ local on_attach = function(client, bufnr)
vim.lsp.handlers["textDocument/publishDiagnostics"] = vim.lsp.with(
vim.lsp.diagnostic.on_publish_diagnostics, {
update_in_insert = true,
underline = false,
virtual_text = false
}
)