From 23ca1639382e20a40cbe022e48b648eab06ab917 Mon Sep 17 00:00:00 2001 From: Alexander Karle Date: Mon, 28 May 2018 23:10:36 -0400 Subject: [PATCH] Tweak bash prompt to have space between commands --- bash/bash_prompt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/bash_prompt b/bash/bash_prompt index c5985d2..4664ecc 100644 --- a/bash/bash_prompt +++ b/bash/bash_prompt @@ -30,7 +30,7 @@ if tput setaf 1 &> /dev/null; then tput sgr0 BOLD="\[$(tput bold)\]" RESET="\[$(tput sgr0)\]" - export PS1="$BOLD$BLUE\w $RESET$GRAY\$(parse_git_branch)\n$BOLD$MAGENTA\$ $RESET" + export PS1="\n$BOLD$BLUE\w $RESET$GRAY\$(parse_git_branch)\n$BOLD$MAGENTA\$ $RESET" export PS2="$ORANGE→ $RESET" else # TODO: write better case for too few colors... -- libgit2 0.28.4