diff options
author | Marc Coquand <marc@mccd.space> | 2024-07-16 14:37:31 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-07-16 14:37:31 -0500 |
commit | 0f7e6e7763774eb848b929b7cf1c6f8026e8fe49 (patch) | |
tree | 52fa59003beb1a9f8772a3e9663bb723e6e80ebc /shrc | |
parent | 63cfb9a8f5a0c9f1b9c433a0a535be309b268ea5 (diff) | |
download | bsd-0f7e6e7763774eb848b929b7cf1c6f8026e8fe49.tar.gz bsd-0f7e6e7763774eb848b929b7cf1c6f8026e8fe49.tar.bz2 bsd-0f7e6e7763774eb848b929b7cf1c6f8026e8fe49.zip |
Updates
Diffstat (limited to 'shrc')
-rw-r--r-- | shrc | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ +#export HISTFILE="$HOME/.history" +#alias grep="ugrep --exclude-dir=node-modules --exclude-dir=_build" +alias e="$EDITOR" +alias g="git" +alias grep="ugrep" +alias tldr="NO_COLOR=1 tldr" +alias fd="NO_COLOR=1 fdfind" +alias de='eval "$(direnv export bash)"' +alias f-commit="fossil commit && fossil git export" +alias jrnl='stitch -t :journal:' +alias bat='envstat -d acpibat0 | grep 'charge:' | awk "{print $6}"' + +set -o emacs +set -o promptcmds +set -o tabcomplete +PS1="${PWD##*/} $PS1" + +eval "$(zoxide init posix --hook prompt)" |