From b19b0b9e8621fefacdbf6c9dfa8c47d1dd654b01 Mon Sep 17 00:00:00 2001 From: John Doty Date: Wed, 14 Nov 2018 21:49:07 +0000 Subject: [PATCH] Cargo bin --- .config/fish/config.fish | 3 +++ .profile | 2 ++ 2 files changed, 5 insertions(+) diff --git a/.config/fish/config.fish b/.config/fish/config.fish index f179927..514f797 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -6,6 +6,9 @@ if status --is-login if test -d /snap/bin set PATH $PATH /snap/bin end + if test -d ~/.cargo/bin + set PATH $PATH ~/.cargo/bin + end end # export EDITOR=ec diff --git a/.profile b/.profile index b4372c5..e40abee 100644 --- a/.profile +++ b/.profile @@ -23,3 +23,5 @@ fi # added by Anaconda3 2.4.1 installer export PATH="/Users/doty/anaconda/bin:$PATH" + +export PATH="$HOME/.cargo/bin:$PATH"