From 846b50bc3a9ad4400f32bfb8da0082d5eeb36f4e Mon Sep 17 00:00:00 2001 From: Guennadi Maximov C Date: Fri, 20 Dec 2024 23:24:57 +0000 Subject: [PATCH] fixup(lazy)!: Correct `pathspec` to `packspec`. Signed-off-by: Guennadi Maximov C --- lua/config/lazy.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 6023c285..23f09d3f 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -80,17 +80,17 @@ Lazy.setup({ versions = true, sources = (function() ---@type LazySources - local S = { 'lazy' } + local S = { 'lazy', 'packspec' } if not is_root() then --- If `luarocks` is available and configured if require('config.util').luarocks_check() then table.insert(S, 'rockspec') end - --- If `pathspec-find` is available - if executable('pathspec-find') then - table.insert(S, 'pathspec') - end + -- --- If `pathspec-find` is available + -- if executable('pathspec-find') then + -- table.insert(S, 'pathspec') + -- end end return S