diff --git a/bashrc.bash b/bashrc.bash index e798d2b..80b5d05 100644 --- a/bashrc.bash +++ b/bashrc.bash @@ -1,7 +1,7 @@ # aliases alias ll='ls -l' alias lld='ls -l | grep ^d' -alias ta='tmux attach -f' +alias ta='tmux attach' alias rmf='rm -rf' # custom scripts @@ -23,4 +23,5 @@ fi [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function +# setting a custom prompt, with git branch info export PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '