Add cargo bin to path

This commit is contained in:
Kevin Cotugno 2018-11-29 22:13:04 -08:00
parent 5acdad8cd7
commit 68eb9276d2

4
.zshrc
View File

@ -35,6 +35,10 @@ if (( !$? )) && [[ -d "$DEVPATH/go" ]]; then
export PATH="$GOPATH/bin:$PATH"
fi
if [[ -d "$HOME/.cargo" ]]; then
export PATH=$HOME/.cargo/bin:$PATH
fi
which nvim &> /dev/null
neovim="$?"