Skip to content

Commit

Permalink
feat: improved LSP grouping in lualine
Browse files Browse the repository at this point in the history
  • Loading branch information
christianchiarulli committed Nov 22, 2021
1 parent 07bcae4 commit f3d7a94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/lvim/core/lualine/components.lua
Expand Up @@ -112,9 +112,9 @@ return {
local supported_linters = linters.list_registered_providers(buf_ft)
vim.list_extend(buf_client_names, supported_linters)

return table.concat(buf_client_names, ", ")
return "[" .. table.concat(buf_client_names, ", ") .. "]"
end,
icon = "",
-- icon = " ",
color = { gui = "bold" },
cond = conditions.hide_in_width,
},
Expand Down

0 comments on commit f3d7a94

Please sign in to comment.