Compare commits
2 commits
7d974f5115
...
bd146ae1d8
| Author | SHA1 | Date | |
|---|---|---|---|
| bd146ae1d8 | |||
| cf129ad7f6 |
1 changed files with 23 additions and 3 deletions
|
|
@ -4,15 +4,35 @@ local lualine = require('lualine');
|
||||||
|
|
||||||
local function active_lsps()
|
local function active_lsps()
|
||||||
local buffer = vim.api.nvim_get_current_buf()
|
local buffer = vim.api.nvim_get_current_buf()
|
||||||
local client_count = #vim.lsp.get_clients({ bufnr = buffer })
|
local attached_clients = vim.lsp.get_clients({ bufnr = buffer })
|
||||||
|
|
||||||
return ('LSP: %d'):format(client_count)
|
if #attached_clients == 0 then return 'LSP: 0' end
|
||||||
|
|
||||||
|
local preview_client = attached_clients[1]
|
||||||
|
|
||||||
|
return ('LSP: %s (%d)'):format(preview_client.name, #attached_clients)
|
||||||
|
end
|
||||||
|
|
||||||
|
local function diff_source()
|
||||||
|
local gitsigns = vim.b.gitsigns_status_dict
|
||||||
|
if gitsigns then
|
||||||
|
return {
|
||||||
|
added = gitsigns.added,
|
||||||
|
modified = gitsigns.changed,
|
||||||
|
removed = gitsigns.removed
|
||||||
|
}
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
lualine.setup {
|
lualine.setup {
|
||||||
sections = {
|
sections = {
|
||||||
lualine_a = {'mode'},
|
lualine_a = {'mode'},
|
||||||
lualine_b = {'branch', 'diff', 'diagnostics', active_lsps },
|
lualine_b = {
|
||||||
|
{'b:gitsigns_head', icon = ''},
|
||||||
|
{'diff', source = diff_source},
|
||||||
|
'diagnostics',
|
||||||
|
active_lsps
|
||||||
|
},
|
||||||
lualine_c = {
|
lualine_c = {
|
||||||
{
|
{
|
||||||
'filename',
|
'filename',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue