From 9501ac14aed592bc4fefce237f37d0cbff59d241 Mon Sep 17 00:00:00 2001 From: Joel Kuzmarski Date: Thu, 1 Sep 2016 03:48:03 -0500 Subject: [PATCH] Use ; instead of && for promptinit (#227) Closes #226 --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 827d159..47a84e4 100644 --- a/readme.md +++ b/readme.md @@ -74,7 +74,7 @@ Initialize the prompt system (if not so already) and choose `pure`: ```sh # .zshrc -autoload -U promptinit && promptinit +autoload -U promptinit; promptinit prompt pure ``` @@ -114,7 +114,7 @@ Defines the git up arrow symbol. The default value is `⇡`. ```sh # .zshrc -autoload -U promptinit && promptinit +autoload -U promptinit; promptinit # optionally define some options PURE_CMD_MAX_EXEC_TIME=10