VoidVim/lua/config/plugins/lsp_diagnostic.lua

6 lines
222 B
Lua
Raw Normal View History

2024-12-13 14:29:11 +03:00
local signs = { Error = "", Warn = "", Hint = "󱩎 ", Info = "" }
for type, icon in pairs(signs) do
local hl = "DiagnosticSign" .. type
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = "" })
end