summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2022-04-30 09:21:49 +0300
committerLars Wirzenius <liw@liw.fi>2022-04-30 09:21:49 +0300
commitc7b6da4efc4b42824c92eb1016892894ee62c9c2 (patch)
treec6282aad54e468c74f31f21431d0d8fa83f34378
parent32a6cc51f5158bd7232b099935ddce5e15d832c1 (diff)
downloadliw-dot-files-c7b6da4efc4b42824c92eb1016892894ee62c9c2.tar.gz
bashrc: enable zoxide, cargo
Sponsored-by: author
-rw-r--r--bashrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/bashrc b/bashrc
index 4e0318a..fdede7d 100644
--- a/bashrc
+++ b/bashrc
@@ -186,6 +186,11 @@ if [ -n "$PS1" ]; then
bind -r ''
fi
+if command -v zoxide > /dev/null; then
+ eval "$(zoxide init bash)"
+fi
+
if command -v starship > /dev/null; then
eval "$(starship init bash)"
fi
+. "$HOME/.cargo/env"