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 end
-- Diagnostics signs -- Diagnostics signs
local signs = { Error = "🔥", Warn = "⚠️", Hint = "🤔", Info = "" } local signs = {
Error = "🔥",
Warn = "⚠️",
Hint = "🤔",
Info = "",
}
for type, icon in pairs(signs) do for type, icon in pairs(signs) do
local hl = "DiagnosticSign" .. type local hl = "DiagnosticSign" .. type
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl }) vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
@ -34,13 +39,8 @@ function M.config_lsp_ui()
trouble.setup({ trouble.setup({
fold_open = "", fold_open = "",
fold_closed = "", fold_closed = "",
signs = { icons = false,
error = signs.Error, use_diagnostic_signs = true,
warning = signs.Warning,
hint = signs.Hint,
information = signs.Info,
other = "",
},
}) })
end) end)
end end