From 1c5e7c4e75f3cba6a735c6d8b834984820a7cb84 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Mon, 25 Feb 2019 23:40:24 +0100 Subject: [PATCH] Add newline before bash prompt --- dotfiles/.bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/.bashrc b/dotfiles/.bashrc index abebe1b..7be0d80 100644 --- a/dotfiles/.bashrc +++ b/dotfiles/.bashrc @@ -203,7 +203,7 @@ bashrc_set_prompt() { local git_color="\[\033[${green}m\]" local default_color="\[\033[0m\]" - PS1="[" # [ + PS1="\n[" # [ PS1+="$user_host_color\u@\h " # user @ host PS1+="$pwd_color\w" # pwd PS1+="$git_color$(__git_ps1 ' %s')" # git status (only if in repo)