From 05c6d2520fc96a3eff39c595a04b492ccc5830de Mon Sep 17 00:00:00 2001 From: Touhid Arastu Date: Mon, 24 Apr 2023 16:08:59 +0330 Subject: [PATCH] Update zgen installation command By default, zgen loads plugins from the master repository. However, when attempting to load the history-search-multi-word plugin, an error is encountered due to its default branch being named "main" instead of "master". To address this issue, you can add the branch name to the command, with the period before the branch name indicating the location within the repository that zgen should search for the plugin. In this case, the period represents the root directory. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bf69fc5..f300e96 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ handle cloning the plugin for you the next time you start zsh. You can also add ### Zgen ```zsh -zgen load zdharma-continuum/history-search-multi-word +zgen load zdharma-continuum/history-search-multi-word . main ``` to your .zshrc file in the same place you're doing your other `zgen load` calls in.