From 1508e83271a3acbb9f1ac7010dc05cd87b22503c Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Sun, 5 Sep 2021 14:09:50 +0200 Subject: [PATCH] Support rust apps installed locally with cargo --- .config/fish/config.fish | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.config/fish/config.fish b/.config/fish/config.fish index 710eaed..0ce1e83 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -27,6 +27,11 @@ set -U grcplugin_ls --color if test -x ~/.local/bin set PATH $PATH ~/.local/bin end +# Local Rust apps installed through cargo +if test -x ~/.cargo/bin + set PATH $PATH ~/.cargo/bin +end +# Scripts from my dotfiles repo if test -x ~/.dot/dotfiles/bin set PATH $PATH ~/.dot/dotfiles/bin end