update config

This commit is contained in:
asep komarudin 2023-03-03 21:44:37 +07:00
parent 06f0332a8f
commit 4bf554b022
2 changed files with 10 additions and 1 deletions

View file

@ -37,8 +37,11 @@ return {
event = { "BufRead" },
config = function()
require("lsp-progress").setup({
client_format = function(client_name, spinner, series_messages)
return #series_messages > 0 and (spinner .. " " .. table.concat(series_messages, ", ")) or nil
end,
format = function(client_messages)
local sign = "" -- nf-fa-gear \uf013
local sign = ""
return #client_messages > 0 and (sign .. " " .. table.concat(client_messages, " ")) or sign
end,
})