From d54157402803ea4d14589c1994d5302b175a0347 Mon Sep 17 00:00:00 2001 From: shadmansaleh <13149513+shadmansaleh@users.noreply.github.com> Date: Sun, 8 Aug 2021 23:50:44 +0600 Subject: [PATCH] chore: fix lint error --- lua/lualine/config.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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')