Files
nvim/lua/config/lsp/lsp-signs.lua
2023-12-31 02:47:28 +01:00

7 lines
223 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