From 2b0b947b389f6188d905c708e799e119511bda82 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Fri, 14 Feb 2020 16:23:29 +0100 Subject: [PATCH] Update path with bin-extra --- zsh/path.zsh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zsh/path.zsh b/zsh/path.zsh index b0b3ddf..db81539 100644 --- a/zsh/path.zsh +++ b/zsh/path.zsh @@ -7,6 +7,10 @@ if [ -d "$HOME/.scripts" ]; then export PATH=$HOME/.scripts:$PATH fi +if [ -d "$HOME/.config/dotfiles/bin-extra" ]; then + export PATH=$HOME/.config/dotfiles/bin-extra:$PATH +fi + # Rust path if [ -d $HOME/.cargo ]; then export PATH=$HOME/.cargo/bin:$PATH