diff options
author | christianchiarulli <[email protected]> | 2021-11-22 15:14:18 -0500 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-11-22 15:14:18 -0500 |
commit | f3d7a94d8cb85a7c03eace8576ad7f9125147384 (patch) | |
tree | b46609b9d3e3eef78ddce2aff0137df6e167cccb | |
parent | 07bcae45fd54ef9b8c2e663dd414b3384435ebe9 (diff) |
feat: improved LSP grouping in lualine
-rw-r--r-- | lua/lvim/core/lualine/components.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/lvim/core/lualine/components.lua b/lua/lvim/core/lualine/components.lua index 9366df56..c0482c02 100644 --- a/lua/lvim/core/lualine/components.lua +++ b/lua/lvim/core/lualine/components.lua @@ -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, }, |