From 43d3a1f0025afe83b651557e85eb2584f034dec1 Mon Sep 17 00:00:00 2001 From: Rabin Adhikari Date: Tue, 16 Jan 2024 12:03:07 +0545 Subject: [PATCH] Clone only the last commit when installing lazy.nvim Update `README.md` to add `--depth=1` when cloning `lazy.nvim` repo. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ebcca6a..a21062b 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", "clone", + "--depth=1", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", -- latest stable release