diff --git a/lua/lualine/config.lua b/lua/lualine/config.lua index 53a1a11..e387e94 100644 --- a/lua/lualine/config.lua +++ b/lua/lualine/config.lua @@ -45,8 +45,7 @@ local function apply_configuration(config_table) 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 - config[section_group_name][section_name] = - vim.deepcopy(config_table[section_group_name][section_name]) + config[section_group_name][section_name] = vim.deepcopy(section) end end parse_sections('options')