Skip to content
This repository was archived by the owner on Dec 7, 2025. It is now read-only.

Commit d2d84c1

Browse files
committed
update
1 parent 61ce12f commit d2d84c1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

lua/strive/init.lua

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1375,7 +1375,13 @@ function M.update()
13751375
M.log('info', 'Checking for updates...')
13761376
local plugins_to_update = {}
13771377

1378-
for _, plugin in ipairs(plugins) do
1378+
local strive_plugin = Plugin.new({
1379+
name = 'nvimdev/strive',
1380+
plugin_name = 'strive',
1381+
is_lazy = true,
1382+
})
1383+
1384+
for _, plugin in ipairs(vim.list_extend(plugins, strive_plugin)) do
13791385
if plugin.is_remote and not plugin.is_local then
13801386
local installed = Async.await(plugin:is_installed())
13811387
if installed then

0 commit comments

Comments
 (0)