mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 08:53:31 +02:00
add: remove of unused plugins
This commit is contained in:
parent
02ea286c83
commit
53b42062e3
7 changed files with 25 additions and 17 deletions
|
@ -44,11 +44,15 @@ return {
|
|||
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
|
||||
return #series_messages > 0
|
||||
and (spinner .. " " .. string.sub(table.concat(series_messages, ", "), 1, 25) .. " ...")
|
||||
or nil
|
||||
end,
|
||||
format = function(client_messages)
|
||||
local sign = ""
|
||||
return #client_messages > 0 and (sign .. " " .. table.concat(client_messages, " ")) or sign
|
||||
return #client_messages > 0
|
||||
and (sign .. " " .. string.sub(table.concat(client_messages, " "), 1, 25) .. " ...")
|
||||
or sign
|
||||
end,
|
||||
})
|
||||
end,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue