Merge pull request #204 from shadmansaleh/Enhance/Clear_old_config_before_applying

### Changes:
- Clear old config before applying a  new one
- Don't load g:lualine config when config is given to setup function
This commit is contained in:
Shadman 2021-05-02 10:57:06 +06:00 committed by GitHub
commit fcec65648c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 3 deletions

View File

@ -2,11 +2,17 @@
-- MIT license, see LICENSE for more details.
local utils_section = require('lualine.utils.section')
local highlight = require('lualine.highlight')
local config = require('lualine.defaults')
local config = vim.deepcopy(require('lualine.defaults'))
local function apply_configuration(config_table)
if not config_table then return end
local function parse_sections(section_group_name)
if section_group_name ~= 'options' then
config[section_group_name] = {} -- clear old config
else
-- reset options
config.options = vim.deepcopy(require'lualine.defaults'.options)
end
if not config_table[section_group_name] then return end
for section_name, section in pairs(config_table[section_group_name]) do
config[section_group_name][section_name] =
@ -26,7 +32,7 @@ local function apply_configuration(config_table)
parse_sections('sections')
parse_sections('inactive_sections')
parse_sections('tabline')
if config_table.extensions then config.extensions = config_table.extensions end
config.extensions = config_table.extensions or {}
end
local function check_single_separator()
@ -267,7 +273,9 @@ local function set_statusline()
end
local function setup(user_config)
apply_configuration(vim.g.lualine)
if not user_config then
apply_configuration(vim.g.lualine)
end
apply_configuration(user_config)
check_single_separator()
setup_theme()