chore: fix lint error

This commit is contained in:
shadmansaleh 2021-08-08 23:50:44 +06:00
parent 1816bc8622
commit d541574028
1 changed files with 1 additions and 2 deletions

View File

@ -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')