瀏覽代碼

feat: improved LSP grouping in lualine

christianchiarulli 3 年之前
父節點
當前提交
f3d7a94d8c
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lua/lvim/core/lualine/components.lua

+ 2 - 2
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,
   },