@@ -403,7 +403,7 @@ function Spec:import(spec)
403
403
--- @type string[]
404
404
local modnames = {}
405
405
406
- if spec .import == M .LOCAL_SPEC then
406
+ if spec .import : find ( M .LOCAL_SPEC , 1 , true ) then
407
407
modnames = { spec .import }
408
408
else
409
409
Util .lsmod (spec .import , function (modname )
@@ -414,15 +414,19 @@ function Spec:import(spec)
414
414
415
415
for _ , modname in ipairs (modnames ) do
416
416
imported = imported + 1
417
- Util .track ({ import = modname })
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 })
418
422
self .importing = modname
419
423
-- unload the module so we get a clean slate
420
424
--- @diagnostic disable-next-line : no-unknown
421
425
package.loaded [modname ] = nil
422
426
Util .try (function ()
423
427
local mod = nil
424
- if modname == M .LOCAL_SPEC then
425
- mod = M .local_spec ()
428
+ if modname : find ( M .LOCAL_SPEC , 1 , true ) then
429
+ mod = M .local_spec (modname )
426
430
else
427
431
mod = require (modname )
428
432
end
@@ -546,26 +550,48 @@ function M.update_state()
546
550
end
547
551
end
548
552
549
- function M . local_spec ()
550
- local filepath = vim . fn . fnamemodify ( " .lazy.lua " , " :p " )
551
- local file = vim .secure .read (filepath )
553
+ --- @param path string
554
+ function M . local_spec ( path )
555
+ local file = vim .secure .read (path )
552
556
if file then
553
557
return loadstring (file )()
554
558
end
555
559
return {}
556
560
end
557
561
562
+ --- @return string ?
563
+ function M .find_local_spec ()
564
+ if not Config .options .local_spec then
565
+ return
566
+ end
567
+ local path = vim .uv .cwd ()
568
+ while path ~= " " do
569
+ local file = path .. " /" .. M .LOCAL_SPEC
570
+ if vim .fn .filereadable (file ) == 1 then
571
+ return file
572
+ end
573
+ local p = vim .fn .fnamemodify (path , " :h" )
574
+ if p == path then
575
+ break
576
+ end
577
+ path = p
578
+ end
579
+ end
580
+
558
581
function M .load ()
559
582
M .loading = true
560
583
-- load specs
561
584
Util .track (" spec" )
562
585
Config .spec = Spec .new ()
586
+
587
+ local local_spec = M .find_local_spec ()
588
+
563
589
Config .spec :parse ({
564
590
vim .deepcopy (Config .options .spec ),
565
591
{
566
- import = " .lazy.lua " ,
592
+ import = local_spec or M . LOCAL_SPEC ,
567
593
cond = function ()
568
- return Config . options . local_spec and vim . fn . filereadable ( M . LOCAL_SPEC ) == 1
594
+ return local_spec ~= nil
569
595
end ,
570
596
},
571
597
{ " folke/lazy.nvim" },
0 commit comments