From 5cffb9f36a2292d4bb5d6ad3d8b26440158fb5de Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sun, 23 Jun 2024 10:11:42 +0200 Subject: [PATCH] docs: use pkg branch for docs --- lua/init.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lua/init.lua b/lua/init.lua index 8194440..aaf7386 100644 --- a/lua/init.lua +++ b/lua/init.lua @@ -14,7 +14,15 @@ else local lazypath = root .. "/plugins/lazy.nvim" if not vim.loop.fs_stat(lazypath) then print("Bootstrapping lazy.nvim") - vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath }) + vim.fn.system({ + "git", + "clone", + "--filter=blob:none", + -- FIXME: remove this when the new version is released + "--branch=pkg", + "https://github.com/folke/lazy.nvim.git", + lazypath, + }) end vim.opt.runtimepath:prepend(lazypath) end