Fix some lsp warnings

This commit is contained in:
Akianonymus 2022-08-18 00:31:31 +05:30 committed by Sidhanth Rathod
parent 5e81ae8379
commit 130442712b
2 changed files with 2 additions and 2 deletions
lua/core

View file

@ -132,7 +132,7 @@ end
M.load_override = function(default_table, plugin_name)
local user_table = M.load_config().plugins.override[plugin_name] or {}
user_table = type(user_table) == "table" and user_table or user_table()
return merge_tb("force", default_table, user_table)
return merge_tb("force", default_table, user_table) or {}
end
M.packer_sync = function(...)