lualine.nvim/lua/lualine/config.lua

75 lines
2.1 KiB
Lua
Raw Normal View History

-- Copyright (c) 2020-2021 hoob3rt
-- MIT license, see LICENSE for more details.
local config = {
options = {
icons_enabled = true,
theme = 'auto',
component_separators = { '', '' },
section_separators = { '', '' },
disabled_filetypes = {},
},
sections = {
lualine_a = { 'mode' },
lualine_b = { 'branch', 'diff', { 'diagnostics', sources = { 'nvim_lsp', 'coc' } } },
lualine_c = { 'filename' },
lualine_x = { 'encoding', 'fileformat', 'filetype' },
lualine_y = { 'progress' },
lualine_z = { 'location' },
},
inactive_sections = {
lualine_a = {},
lualine_b = {},
lualine_c = { 'filename' },
lualine_x = { 'location' },
lualine_y = {},
lualine_z = {},
},
tabline = {},
extensions = {},
}
-- change separator format 'x' or {'x'} to {'x', 'x'}
local function fix_separators(separators)
if separators ~= nil then
if type(separators) == 'string' then
return { separators, separators }
elseif type(separators) == 'table' and #separators == 1 then
return { separators[1], separators[1] }
end
end
return separators
end
local function apply_configuration(config_table)
if not config_table then
return vim.deepcopy(config)
end
local function parse_sections(section_group_name)
if not config_table[section_group_name] then
return
end
for section_name, section in pairs(config_table[section_group_name]) do
2021-08-08 17:50:44 +00:00
config[section_group_name][section_name] = vim.deepcopy(section)
end
end
parse_sections 'options'
parse_sections 'sections'
parse_sections 'inactive_sections'
parse_sections 'tabline'
if config_table.extensions then
config.extensions = vim.deepcopy(config_table.extensions)
end
config.options.section_separators = fix_separators(config.options.section_separators)
config.options.component_separators = fix_separators(config.options.component_separators)
return vim.deepcopy(config)
end
2021-08-04 02:28:53 +00:00
local function get_current_config()
return vim.deepcopy(config)
end
return {
2021-08-04 02:28:53 +00:00
get_config = get_current_config,
apply_configuration = apply_configuration,
}