diff options
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() | 
