summaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorMichaël Ball <michael.ball@krotosaudio.com>2024-07-19 14:16:50 +0100
committerMichaël Ball <michael.ball@krotosaudio.com>2024-07-19 14:16:50 +0100
commit3bf45344726bf42db4790687d0ae46ed87c1abd0 (patch)
tree8994247140cdec6cc29bfd57d12735f1dd23ea1d /zsh
parent1616a0741806e74aaf85f6b3539de374c3ca3249 (diff)
Add Python local bin to $PATH
Diffstat (limited to 'zsh')
-rw-r--r--zsh/.zshenv5
1 files changed, 5 insertions, 0 deletions
diff --git a/zsh/.zshenv b/zsh/.zshenv
index e7aa6ab..ba90358 100644
--- a/zsh/.zshenv
+++ b/zsh/.zshenv
@@ -9,4 +9,9 @@ if [[ -d $HOME/.cargo/bin ]] && [[ ! $PATH == *"$HOME/.cargo/bin"* ]] {
if [[ -d $HOME/.local/bin ]] && [[ ! $PATH == *"$HOME/.local/bin"* ]] {
export PATH="$HOME/.local/bin:$PATH"
}
+
+if [[ -d $HOME/Library/Python/3.12/bin ]] && [[ ! $PATH == *"$HOME/Library/Python/3.12/bin"* ]] {
+ export PATH="$HOME/Library/Python/3.12/bin:$PATH"
+}
+
. "$HOME/.cargo/env"