mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-17 17:26:27 +00:00
Fix trouble icons
This commit is contained in:
parent
f766f82b2a
commit
175c271d90
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user