Skip to content

Commit ac1eaeb

Browse files
committed
fix: update lazy bootstrapping for nightly and stable neovim
1 parent 9e3be30 commit ac1eaeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-- This file simply bootstraps the installation of Lazy.nvim and then calls other files for execution
22
-- This file doesn't necessarily need to be touched, BE CAUTIOUS editing this file and proceed at your own risk.
33
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
4+
if not (vim.env.LAZY or (vim.uv or vim.loop).fs_stat(lazypath)) then
55
-- stylua: ignore
66
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
77
end

0 commit comments

Comments
 (0)