diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-05-13 23:04:30 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-05-13 23:04:30 +0200 |
commit | 9773e716d68f710861202f69eec7d400bdd0291b (patch) | |
tree | 13ebfc885888defeb93075777bd79791f9fa4eef | |
parent | 04010c52c46ed485efda947c91fc44261f47d804 (diff) |
Update to uv
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ local function ensure(user, plugin) local path = vim.fn.stdpath "data" .. "/lazy/" .. plugin - if not vim.loop.fs_stat(path) then + if not vim.uv.fs_stat(path) then vim.notify("Downloading " .. plugin .. "...", vim.log.levels.INFO) vim.fn.system { "git", |