Files
VoidVim/lua/config/plugins/lsp_diagnostic.lua
2025-01-11 18:20:26 +04:00

6 lines
222 B
Lua

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