From af38127637a7f91d684b51235258def023ad5cba Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Mon, 14 Feb 2022 18:46:27 -0600 Subject: [PATCH] added .cargo/bin to PATH. --- zsh/.zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index 068eb37..383aa40 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -19,6 +19,9 @@ testPath="$HOME/.local/bin" [ -d "$testPath" ] && export PATH="$PATH:$testPath" export PATH="$PATH:/opt" + testPath="$HOME/.cargo/bin" + [ -d "$testPath" ] && export PATH="$PATH:$testPath" + export PATH="$PATH:/opt" #set default editor and pager. export EDITOR=nvim export VISUAL=nvim