fix: update lazy bootstrapping for nightly and stable neovim

pull/9/head
Micah Halter 2024-03-27 07:14:34 -04:00
parent 9e3be30b92
commit ac1eaeb785
No known key found for this signature in database
GPG Key ID: 4224A6EA9A8CAAA8
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
-- This file simply bootstraps the installation of Lazy.nvim and then calls other files for execution
-- This file doesn't necessarily need to be touched, BE CAUTIOUS editing this file and proceed at your own risk.
local lazypath = vim.env.LAZY or vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
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
-- stylua: ignore
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath })
end