We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e3be30 commit ac1eaebCopy full SHA for ac1eaeb
init.lua
@@ -1,7 +1,7 @@
1
-- This file simply bootstraps the installation of Lazy.nvim and then calls other files for execution
2
-- This file doesn't necessarily need to be touched, BE CAUTIOUS editing this file and proceed at your own risk.
3
local lazypath = vim.env.LAZY or vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
4
-if not (vim.env.LAZY or vim.loop.fs_stat(lazypath)) then
+if not (vim.env.LAZY or (vim.uv or vim.loop).fs_stat(lazypath)) then
5
-- stylua: ignore
6
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
7
end
0 commit comments