85 lines
2.6 KiB
Lua
85 lines
2.6 KiB
Lua
require('lualine').setup {
|
|
options = {
|
|
icons_enabled = true,
|
|
theme = 'rose-pine',
|
|
component_separators = { left = '|', right = '|'},
|
|
section_separators = { left = '', right = ''},
|
|
disabled_filetypes = {
|
|
statusline = {},
|
|
winbar = {},
|
|
},
|
|
ignore_focus = {},
|
|
always_divide_middle = true,
|
|
globalstatus = false,
|
|
refresh = {
|
|
statusline = 1000,
|
|
tabline = 1000,
|
|
winbar = 1000,
|
|
}
|
|
},
|
|
sections = {
|
|
lualine_a = {'mode'},
|
|
lualine_b = {
|
|
'branch',
|
|
'diff',
|
|
{
|
|
'diagnostics',
|
|
--sources = 'nvim_diagnostic'
|
|
sources = { 'nvim_diagnostic' },
|
|
|
|
-- Displays diagnostics for the defined severity types
|
|
sections = { 'error', 'warn', 'info', 'hint' },
|
|
diagnostics_color = {
|
|
-- Same values as the general color option can be used here.
|
|
error = 'DiagnosticError', -- Changes diagnostics' error color.
|
|
warn = 'DiagnosticWarn', -- Changes diagnostics' warn color.
|
|
info = 'DiagnosticInfo', -- Changes diagnostics' info color.
|
|
hint = 'DiagnosticHint', -- Changes diagnostics' hint color.
|
|
},
|
|
symbols = { error = ' ', warn = ' ', info = ' ', hint = 'H' },
|
|
colored = true, -- Displays diagnostics status in color if set to true.
|
|
update_in_insert = false, -- Update diagnostics in insert mode.
|
|
always_visible = false, -- Show diagnostics even if there are none.
|
|
},
|
|
},
|
|
lualine_c = {
|
|
'filename',
|
|
{
|
|
-- Lsp server name .
|
|
function()
|
|
local msg = 'No Active Lsp'
|
|
local buf_ft = vim.api.nvim_buf_get_option(0, 'filetype')
|
|
local clients = vim.lsp.get_active_clients()
|
|
if next(clients) == nil then
|
|
return msg
|
|
end
|
|
for _, client in ipairs(clients) do
|
|
local filetypes = client.config.filetypes
|
|
if filetypes and vim.fn.index(filetypes, buf_ft) ~= -1 then
|
|
return client.name
|
|
end
|
|
end
|
|
return msg
|
|
end,
|
|
icon = ' LSP:',
|
|
color = { fg = '#ffffff', gui = 'bold' },
|
|
}
|
|
},
|
|
lualine_x = {'encoding', 'filetype'},
|
|
lualine_y = {'progress'},
|
|
lualine_z = {'location'}
|
|
},
|
|
inactive_sections = {
|
|
lualine_a = {},
|
|
lualine_b = {},
|
|
lualine_c = {'filename'},
|
|
lualine_x = {'location'},
|
|
lualine_y = {},
|
|
lualine_z = {}
|
|
},
|
|
tabline = {},
|
|
winbar = {},
|
|
inactive_winbar = {},
|
|
extensions = {}
|
|
}
|