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"