feat(nvim): adapt diagnostics icons to terminal font

main
mandlm 2023-07-28 09:04:45 +02:00
parent 2bb429c70a
commit e4aa818905
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ vim.diagnostic.config({
})
-- setup diagnostics signs
local diagnostics_signs = { Error = "", Want = "", Hint = "", Info = "" }
local diagnostics_signs = { Error = "", Warn = "", Hint = "", Info = "" }
for type, icon in pairs(diagnostics_signs) do
local hl = "DiagnosticSign" .. type
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })