From 2cd6e3aea36d3aec5191bd6cad909b64fc0a51e1 Mon Sep 17 00:00:00 2001 From: Nicolas Bertrand Date: Fri, 2 Jul 2021 15:38:33 +0200 Subject: [PATCH] Adds .local/bin to the path --- zsh/path.zsh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zsh/path.zsh b/zsh/path.zsh index db81539..31019d3 100644 --- a/zsh/path.zsh +++ b/zsh/path.zsh @@ -22,6 +22,12 @@ if [ -d $HOME/.cargo ]; then fi fi +# .local path +if [ -d $HOME/.local/bin ]; then + export PATH=$HOME/.local/bin:$PATH +fi + + # Wasmer path if [ -d $HOME/.wasmer ]; then export WASMER_DIR="$HOME/.wasmer"