summaryrefslogtreecommitdiff
path: root/lua/lvim/core/lualine/components.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2021-12-11 20:18:16 +0100
committerkylo252 <[email protected]>2021-12-11 20:18:16 +0100
commitfc756d8151b2f55044b8049807d199fbfb01b3bf (patch)
tree54ff77f66315abdc440802ceb535662a5c4eabf4 /lua/lvim/core/lualine/components.lua
parent3a2d62ed2510ca05eb6ea87240a86df82338f5aa (diff)
parentf7d883b6b92d66c222fd0d4e3d398c1f4fcea882 (diff)
Merge remote-tracking branch 'origin/rolling' into release-candidate
Diffstat (limited to 'lua/lvim/core/lualine/components.lua')
-rw-r--r--lua/lvim/core/lualine/components.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/lvim/core/lualine/components.lua b/lua/lvim/core/lualine/components.lua
index 9366df56..9cf67616 100644
--- a/lua/lvim/core/lualine/components.lua
+++ b/lua/lvim/core/lualine/components.lua
@@ -65,7 +65,7 @@ return {
},
diagnostics = {
"diagnostics",
- sources = { "nvim_lsp" },
+ sources = { "nvim_diagnostic" },
symbols = { error = " ", warn = " ", info = " ", hint = " " },
color = {},
cond = conditions.hide_in_width,
@@ -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,
},