@@ -383,10 +383,18 @@ function Spec:import(spec)
383
383
if spec .import == " lazy" then
384
384
return self :error (" You can't name your plugins module `lazy`." )
385
385
end
386
- if type (spec .import ) ~= " string" then
386
+ if type (spec .import ) == " function" then
387
+ if not spec .name then
388
+ return self :error (" Invalid import spec. Missing name: " .. vim .inspect (spec ))
389
+ end
390
+ elseif type (spec .import ) ~= " string" then
387
391
return self :error (" Invalid import spec. `import` should be a string: " .. vim .inspect (spec ))
388
392
end
389
- if vim .tbl_contains (self .modules , spec .import ) then
393
+
394
+ local import_name = spec .name or spec .import
395
+ --- @cast import_name string
396
+
397
+ if vim .tbl_contains (self .modules , import_name ) then
390
398
return
391
399
end
392
400
if spec .cond == false or (type (spec .cond ) == " function" and not spec .cond ()) then
@@ -396,40 +404,34 @@ function Spec:import(spec)
396
404
return
397
405
end
398
406
399
- self .modules [# self .modules + 1 ] = spec .import
407
+ self .modules [# self .modules + 1 ] = import_name
408
+
409
+ local import = spec .import
400
410
401
411
local imported = 0
402
412
403
- --- @type string[]
404
- local modnames = {}
413
+ --- @type ( string | ( fun (): LazyPluginSpec )) []
414
+ local modspecs = {}
405
415
406
- if spec .import :find (M .LOCAL_SPEC , 1 , true ) then
407
- modnames = { spec .import }
408
- else
409
- Util .lsmod (spec .import , function (modname )
410
- modnames [# modnames + 1 ] = modname
416
+ if type (import ) == " string" then
417
+ Util .lsmod (import , function (modname )
418
+ modspecs [# modspecs + 1 ] = modname
411
419
end )
412
- table.sort (modnames )
420
+ table.sort (modspecs )
421
+ else
422
+ modspecs = { spec .import }
413
423
end
414
424
415
- for _ , modname in ipairs (modnames ) do
425
+ for _ , modspec in ipairs (modspecs ) do
416
426
imported = imported + 1
417
- local name = modname
418
- if modname :find (M .LOCAL_SPEC , 1 , true ) then
419
- name = vim .fn .fnamemodify (modname , " :~:." )
420
- end
421
- Util .track ({ import = name })
427
+ local modname = type (modspec ) == " string" and modspec or import_name
428
+ Util .track ({ import = modname })
422
429
self .importing = modname
423
430
-- unload the module so we get a clean slate
424
431
--- @diagnostic disable-next-line : no-unknown
425
432
package.loaded [modname ] = nil
426
433
Util .try (function ()
427
- local mod = nil
428
- if modname :find (M .LOCAL_SPEC , 1 , true ) then
429
- mod = M .local_spec (modname )
430
- else
431
- mod = require (modname )
432
- end
434
+ local mod = type (modspec ) == " function" and modspec () or require (modspec )
433
435
if type (mod ) ~= " table" then
434
436
self .importing = nil
435
437
return self :error (
@@ -559,7 +561,7 @@ function M.local_spec(path)
559
561
return {}
560
562
end
561
563
562
- --- @return string ?
564
+ --- @return LazySpecImport ?
563
565
function M .find_local_spec ()
564
566
if not Config .options .local_spec then
565
567
return
@@ -568,7 +570,16 @@ function M.find_local_spec()
568
570
while path ~= " " do
569
571
local file = path .. " /" .. M .LOCAL_SPEC
570
572
if vim .fn .filereadable (file ) == 1 then
571
- return file
573
+ return {
574
+ name = vim .fn .fnamemodify (file , " :~:." ),
575
+ import = function ()
576
+ local data = vim .secure .read (file )
577
+ if data then
578
+ return loadstring (data )()
579
+ end
580
+ return {}
581
+ end ,
582
+ }
572
583
end
573
584
local p = vim .fn .fnamemodify (path , " :h" )
574
585
if p == path then
@@ -584,18 +595,13 @@ function M.load()
584
595
Util .track (" spec" )
585
596
Config .spec = Spec .new ()
586
597
587
- local local_spec = M .find_local_spec ()
588
-
589
- Config .spec :parse ({
598
+ local specs = {
590
599
vim .deepcopy (Config .options .spec ),
591
- {
592
- import = local_spec or M .LOCAL_SPEC ,
593
- cond = function ()
594
- return local_spec ~= nil
595
- end ,
596
- },
597
- { " folke/lazy.nvim" },
598
- })
600
+ }
601
+ specs [# specs + 1 ] = M .find_local_spec ()
602
+ specs [# specs + 1 ] = { " folke/lazy.nvim" }
603
+
604
+ Config .spec :parse (specs )
599
605
600
606
-- override some lazy props
601
607
local lazy = Config .spec .plugins [" lazy.nvim" ]
0 commit comments