dotfiles/tools/nvim/lua/config/diagnostics.lua

11 lines
237 B
Lua

local signs = {
Error = "",
Warning = "",
Hint = "",
Information = "",
}
for type, icon in pairs(signs) do
local hl = "DiagnosticSign" .. type
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = "" })
end