summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-14 11:17:07 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-14 11:17:07 +0100
commitb738f357e2380a87dca457d755b20cf4e571caeb (patch)
tree48e0becd0831dd22a9d9d5ca3b32e6e3c092e8b1 /.bashrc
parenta4ef7b668ef2e4fe4374f038fe07b2adaadfb50a (diff)
Prefix Bash Prompt with Newline
.bashrc [PS1]: Add newline before the command prompt to clearly separate each command.
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/.bashrc b/.bashrc
index 573e49e..78e9cea 100644
--- a/.bashrc
+++ b/.bashrc
@@ -22,9 +22,9 @@ source /etc/bashrc
# Adjust the prompt depending on whether we're in 'guix environment'.
if [ -n "$GUIX_ENVIRONMENT" ]
then
- PS1='\u@\h [env]\$ '
+ PS1='\n\u@\h [env]\$ '
else
- PS1='\u@\h \$ '
+ PS1='\n\u@\h \$ '
fi
alias ls='ls -p --color=auto'
alias ll='ls -l'