diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-04-16 15:17:11 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2022-04-16 15:17:11 +0200 |
commit | 2752b7f22d8ea6f27b54e133ff53bd0ae84c61e0 (patch) | |
tree | 82e0a5823cc4c3f05a829a83aa2fb0216129a21c /.bashrc | |
parent | 24fdeb59cad5cfcc29aa1fb349da478841130cbb (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-- | .bashrc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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' |