From 7362c9731bbc148969123b23f83c9165600fef3c Mon Sep 17 00:00:00 2001 From: AlfredJKwack Date: Sun, 6 Feb 2022 12:32:55 +0000 Subject: [PATCH] Shallow cloning when installing locally Create a shallow clones with a history truncated to 1 commit when installing locally. There's no point to pulling everything in. It's faster and saves resources. --- INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 196524f..1993a2f 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -33,7 +33,7 @@ 1. Clone this repository into `$ZSH_CUSTOM/plugins` (by default `~/.oh-my-zsh/custom/plugins`) ```sh - git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions + git clone --depth 1 https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions ``` 2. Add the plugin to the list of plugins for Oh My Zsh to load (inside `~/.zshrc`): @@ -52,7 +52,7 @@ 1. Clone this repository somewhere on your machine. This guide will assume `~/.zsh/zsh-autosuggestions`. ```sh - git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions + git clone --depth 1 https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions ``` 2. Add the following to your `.zshrc`: