chore: fix lint error
This commit is contained in:
parent
1816bc8622
commit
d541574028
|
@ -45,8 +45,7 @@ local function apply_configuration(config_table)
|
||||||
local function parse_sections(section_group_name)
|
local function parse_sections(section_group_name)
|
||||||
if not config_table[section_group_name] then return end
|
if not config_table[section_group_name] then return end
|
||||||
for section_name, section in pairs(config_table[section_group_name]) do
|
for section_name, section in pairs(config_table[section_group_name]) do
|
||||||
config[section_group_name][section_name] =
|
config[section_group_name][section_name] = vim.deepcopy(section)
|
||||||
vim.deepcopy(config_table[section_group_name][section_name])
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
parse_sections('options')
|
parse_sections('options')
|
||||||
|
|
Loading…
Reference in New Issue