diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-06-21 20:58:52 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-06-21 20:58:52 -0300 |
commit | e73869117ca87540a9ca1e5ee7a2c785e87e6be3 (patch) | |
tree | abae5668df609f206bcaac7927605b376a6aa46f | |
parent | 47f0f1fdc55c055cb59b90d45d612a5517b33ed5 (diff) |
add ~/bin to zsh PATH
-rw-r--r-- | .zshrc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.zshrc b/.zshrc index fb965f5..b7a3e7e 100644 --- a/.zshrc +++ b/.zshrc @@ -11,6 +11,8 @@ else PS1=$'%n@%m %1~ %# ' fi +path+=("$HOME/bin") + # //// third party configuration //////////////////////////////////////////// # @@ -32,4 +34,5 @@ export NVM_DIR="$HOME/.nvm" path+=("$HOME/Library/Python/3.9/bin") path+=("/Applications/Sublime Text.app/Contents/SharedSupport/bin") + export PATH |