37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
# ~/.bash_profile
|
|
# Source .bashrc for login shells to ensure consistent environment
|
|
if [ -f ~/.bashrc ]; then
|
|
. ~/.bashrc
|
|
fi
|
|
|
|
export GOPATH=$HOME/go
|
|
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
|
|
export PATH=$PATH:$(go env GOPATH)/bin
|
|
|
|
# Herd injected NVM configuration
|
|
export NVM_DIR="/Users/corey/Library/Application Support/Herd/config/nvm"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
|
|
# Herd injected PHP 8.4 configuration.
|
|
export HERD_PHP_84_INI_SCAN_DIR="/Users/corey/Library/Application Support/Herd/config/php/84/"
|
|
|
|
|
|
# Herd injected PHP 8.2 configuration.
|
|
export HERD_PHP_82_INI_SCAN_DIR="/Users/corey/Library/Application Support/Herd/config/php/82/"
|
|
|
|
|
|
# Herd injected PHP binary.
|
|
export PATH="/Users/corey/Library/Application Support/Herd/bin/":$PATH
|
|
|
|
# Composer Global Path
|
|
export PATH="$PATH:/Users/corey/.config/composer/vendor/bin"
|
|
|
|
|
|
|
|
# Herd injected PHP binary.
|
|
export PATH="/Users/corey/Library/Application Support/Herd/bin/":$PATH
|
|
|
|
|
|
# Herd injected PHP binary.
|
|
export PATH="/Users/corey/Library/Application Support/Herd/bin/":$PATH
|