diff options
author | Marc Coquand <marc@mccd.space> | 2024-05-08 10:51:08 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-05-08 10:51:08 -0500 |
commit | dae5615b67642de1f404a3698109de5f966a9a40 (patch) | |
tree | 4af27e89971bf2cd34e99c21500cd9788e35248a /bashrc | |
parent | 359dd854a9f5ace86caf9e4d0dbfe1de3de43b59 (diff) | |
download | rcm-dae5615b67642de1f404a3698109de5f966a9a40.tar.gz rcm-dae5615b67642de1f404a3698109de5f966a9a40.tar.bz2 rcm-dae5615b67642de1f404a3698109de5f966a9a40.zip |
Add qutebrowser config and more
Diffstat (limited to 'bashrc')
-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)" |