summaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authorMarek Paśnikowski <marekpasnikowski@protonmail.com>2022-04-16 15:17:11 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2022-04-16 15:17:11 +0200
commit2752b7f22d8ea6f27b54e133ff53bd0ae84c61e0 (patch)
tree82e0a5823cc4c3f05a829a83aa2fb0216129a21c /.bashrc
parent24fdeb59cad5cfcc29aa1fb349da478841130cbb (diff)
guix-config: Remove $PWD from bash prompt.
* .bashrc (PS1): Remove "\w" from prompt to clear clutter from the command line.
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/.bashrc b/.bashrc
index 10589f4..573e49e 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 \w [env]\$ '
+ PS1='\u@\h [env]\$ '
else
- PS1='\u@\h \w\$ '
+ PS1='\u@\h \$ '
fi
alias ls='ls -p --color=auto'
alias ll='ls -l'