mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
11 lines
237 B
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
|