diff --git a/dotfiles/zshrc b/dotfiles/zshrc index 9e6f4ea..dab280d 100755 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -131,6 +131,11 @@ fi # Setup PATH for tools PATH=${PATH}:${HOME}/bin/tools +# Got rust? +if test -d ${HOME}/.cargo/bin ; then + PATH=${PATH}:${HOME}/.cargo/bin +fi + # Most is nice, if we have it if command -v most >/dev/null 2>&1; then export PAGER="most"