From 9fd7c99e85fe6a27fd417e98788bddb1bb009f37 Mon Sep 17 00:00:00 2001 From: Jan Jastrow Date: Sun, 11 Aug 2024 00:26:27 +0200 Subject: [PATCH] add local scripts to $PATH --- zsh/env | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zsh/env b/zsh/env index 0dfd8c7..fa8940f 100644 --- a/zsh/env +++ b/zsh/env @@ -37,6 +37,10 @@ fi # Path additions # +if test -d "$HOME/.dotfiles/scripts"; then + export PATH="$HOME/.dotfiles/scripts:$PATH" +fi + if test -d "/opt/homebrew/"; then export PATH="/opt/homebrew/bin:$PATH" eval "$(/opt/homebrew/bin/brew shellenv)"