diff options
Diffstat (limited to '')
-rw-r--r-- | bashrc | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -1,6 +1,5 @@ alias grep="ugrep --exclude-dir=node-modules --exclude-dir=_build" -alias e="mg" -alias pf="" +alias e="$EDITOR" alias g="git" alias rcup="rcup -d ~/rcm" alias lsrc="lsrc -d ~/rcm" @@ -30,10 +29,10 @@ fi [ -f /etc/bashrc ] && source /etc/bashrc parse_git_branch() { - git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1 ∘︎ /' + git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1./' } -PS1=' $(parse_git_branch)\W ' +PS1=' $(parse_git_branch)\W. ' eval "$(zoxide init bash)" eval "$(direnv hook bash)" |