We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eb9bc5 commit 5218d25Copy full SHA for 5218d25
lua/resession/config.lua
@@ -52,9 +52,11 @@ M.setup = function(config)
52
end
53
54
for ext_name, ext_config in pairs(M.extensions) do
55
- local ext = util.get_extension(ext_name)
56
- if ext and ext.config then
57
- ext.config(ext_config)
+ if ext_config then
+ local ext = util.get_extension(ext_name)
+ if ext and ext.config then
58
+ ext.config(ext_config)
59
+ end
60
61
62
0 commit comments