Fix trouble icons

This commit is contained in:
ViViDboarder 2021-12-31 17:31:46 -08:00
parent f766f82b2a
commit 175c271d90
1 changed files with 8 additions and 8 deletions

View File

@ -24,7 +24,12 @@ function M.config_lsp_ui()
end
-- Diagnostics signs
local signs = { Error = "🔥", Warn = "⚠️", Hint = "🤔", Info = "" }
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 = hl })
@ -34,13 +39,8 @@ function M.config_lsp_ui()
trouble.setup({
fold_open = "",
fold_closed = "",
signs = {
error = signs.Error,
warning = signs.Warning,
hint = signs.Hint,
information = signs.Info,
other = "",
},
icons = false,
use_diagnostic_signs = true,
})
end)
end