aboutsummaryrefslogtreecommitdiffstats
path: root/zsh/.zsh/export.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/.zsh/export.zsh')
-rw-r--r--zsh/.zsh/export.zsh4
1 files changed, 4 insertions, 0 deletions
diff --git a/zsh/.zsh/export.zsh b/zsh/.zsh/export.zsh
index c7e34f8..7aa4e8b 100644
--- a/zsh/.zsh/export.zsh
+++ b/zsh/.zsh/export.zsh
@@ -19,6 +19,7 @@ if [[ -d "${HOME}/.gem/ruby/2.7.0/bin" ]]; then export PATH="${HOME}/.gem/ruby/2
export PATH="/usr/local/bin:${PATH}"
export PATH="/Library/TeX/texbin:${PATH}"
export PATH="${PATH}:/Users/yannherklotz/Library/Python/3.7/bin"
+export PATH="/usr/local/opt/bison/bin:$PATH"
# Stop dotnet telemetry
export DOTNET_CLI_TELEMETRY_OPTOUT=1
@@ -38,3 +39,6 @@ if [[ "$?" -eq 0 ]]; then
test -r /home/yannherklotz/.opam/opam-init/init.zsh && . /home/yannherklotz/.opam/opam-init/init.zsh > /dev/null 2> /dev/null || true
eval "$(opam env)";
fi
+
+# Load rust environment
+if [[ -f $HOME/.cargo/env ]]; then source $HOME/.cargo/env; fi