feat(icons): disable icons

This commit is contained in:
2024-08-08 23:05:59 +02:00
parent 2db2fdd1de
commit d379085080
5 changed files with 27 additions and 61 deletions
+1 -1
View File
@@ -130,7 +130,7 @@ local function setup_diagnostics()
update_in_insert = false,
severity_sort = false,
})
local signs = { Error = "󰅚 ", Warn = "󰀪 ", Hint = "󰌶 ", Info = "" }
local signs = { Error = "E", Warn = "W", Hint = "H", Info = "I" }
for type, icon in pairs(signs) do
local hl = "DiagnosticSign" .. type
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })