# HG changeset patch # User Augie Fackler # Date 1638983205 18000 # Node ID 62e62b8855400c10f9c444cacef09763cb26d4b4 # Parent 92d3f40572b699656e3f367a7699b66b7962d247# Parent 7e8603e0a8225030a0f87cd10247be6afb27f1b2 merge diff --git a/.shell.d/20.homebrew.sh b/.shell.d/20.homebrew.sh new file mode 100644 --- /dev/null +++ b/.shell.d/20.homebrew.sh @@ -0,0 +1,3 @@ +if [ -x /opt/homebrew/bin/brew ] ; then + eval "$(/opt/homebrew/bin/brew shellenv)" +fi diff --git a/.shell.d/99.pyenv.sh b/.shell.d/99.pyenv.sh new file mode 100644 --- /dev/null +++ b/.shell.d/99.pyenv.sh @@ -0,0 +1,3 @@ +insert_path_element /Users/augie/.pyenv/shims + +insert_path_element ~/.local/bin diff --git a/.shell.d/99.rust.sh b/.shell.d/99.rust.sh --- a/.shell.d/99.rust.sh +++ b/.shell.d/99.rust.sh @@ -1,2 +1,3 @@ -insert_path_element $HOME/.cargo/bin -# export RUST_SRC_PATH="$(rustc --print sysroot)/lib/rustlib/src/rust/src" +if [ -e "$HOME/.cargo/env" ] ; then + . "$HOME/.cargo/env" +fi