changed the default lsp letters to symbols.

This commit is contained in:
Henri Vandersleyen 2021-05-04 13:28:08 -07:00
parent 249b42ac3f
commit 0f3ed9f54c
No known key found for this signature in database
GPG Key ID: 795A7EF27EBE8A8D
1 changed files with 6 additions and 0 deletions

View File

@ -76,3 +76,9 @@ require "lspconfig".sumneko_lua.setup {
} }
} }
} }
-- replace the default lsp diagnostic letters with prettier symbols
vim.fn.sign_define("LspDiagnosticsSignError", {text = "", numhl = "LspDiagnosticsDefaultError"})
vim.fn.sign_define("LspDiagnosticsSignWarning", {text = "", numhl = "LspDiagnosticsDefaultWarning"})
vim.fn.sign_define("LspDiagnosticsSignInformation", {text = "", numhl = "LspDiagnosticsDefaultInformation"})
vim.fn.sign_define("LspDiagnosticsSignHint", {text = "", numhl = "LspDiagnosticsDefaultHint"})