From 358f79c970d90d55aeb862c48990a945cae5c5f2 Mon Sep 17 00:00:00 2001 From: Rekai Musuka Date: Mon, 11 Jan 2021 18:56:55 -0600 Subject: [PATCH] chore: make Rust in PATH compliant to rustup.rs --- .zshenv | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.zshenv b/.zshenv index 32820f1..5c9105c 100644 --- a/.zshenv +++ b/.zshenv @@ -1,6 +1,3 @@ -# Rust -export PATH="$HOME/.cargo/bin:$PATH" - # DenoJS export DENO_INSTALL="/home/paoda/.deno" export PATH="$DENO_INSTALL/bin:$PATH" @@ -10,3 +7,6 @@ export EDITOR="/usr/bin/nvim" # Add ~/.local/bin to PATH export PATH="$HOME/.local/bin:$PATH" + +# Rust +source "$HOME/.cargo/env"