diff options
author | kylo252 <[email protected]> | 2021-12-11 20:18:16 +0100 |
---|---|---|
committer | kylo252 <[email protected]> | 2021-12-11 20:18:16 +0100 |
commit | fc756d8151b2f55044b8049807d199fbfb01b3bf (patch) | |
tree | 54ff77f66315abdc440802ceb535662a5c4eabf4 /lua/lvim/core/lualine | |
parent | 3a2d62ed2510ca05eb6ea87240a86df82338f5aa (diff) | |
parent | f7d883b6b92d66c222fd0d4e3d398c1f4fcea882 (diff) |
Merge remote-tracking branch 'origin/rolling' into release-candidate
Diffstat (limited to 'lua/lvim/core/lualine')
-rw-r--r-- | lua/lvim/core/lualine/components.lua | 6 | ||||
-rw-r--r-- | lua/lvim/core/lualine/conditions.lua | 2 |
2 files changed, 4 insertions, 4 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, }, diff --git a/lua/lvim/core/lualine/conditions.lua b/lua/lvim/core/lualine/conditions.lua index 3ee4fbb8..6e120b26 100644 --- a/lua/lvim/core/lualine/conditions.lua +++ b/lua/lvim/core/lualine/conditions.lua @@ -1,4 +1,4 @@ -local window_width_limit = 80 +local window_width_limit = 70 local conditions = { buffer_not_empty = function() |