32 lines
1,001 B
Text
32 lines
1,001 B
Text
#[%MACPORTS%]#
|
|
# MacPorts Installer addition on 2023-01-11_at_01:28:57: adding an appropriate PATH variable for use with MacPorts.
|
|
export PATH="$HOME/Library/Python/3.12/bin:$HOME/Library/Python/3.11/bin:$HOME/perl5/bin:$HOME/.local/bin:$HOME/.local/sbin:/opt/local/bin:/opt/local/sbin:/Applications/ArmGNUToolchain/12.2.rel1/arm-none-eabi/bin:$PATH"
|
|
# Finished adapting your PATH environment variable for use with MacPorts.
|
|
#[%MACPORTS%]#
|
|
|
|
[ $(uname) == 'Darwin' ] &&
|
|
command -v port >/dev/null &&
|
|
command -v uname >/dev/null
|
|
if [ $? ]; then
|
|
. /opt/local/etc/bashrc
|
|
. /opt/local/etc/bashrc.mac
|
|
. /opt/local/etc/bash_completion
|
|
fi
|
|
|
|
export PERL5LIB="$HOME/perl5/lib/perl5:$PERL5LIB"
|
|
|
|
eval $(ssh-agent)
|
|
|
|
alias ls='ls -G'
|
|
|
|
if [ -d "$HOME/.profile.d" ]; then
|
|
for pd in "$HOME/.profile.d"/*; do
|
|
. "$pd"
|
|
done
|
|
fi
|
|
|
|
# Makes Vim and friends behave!
|
|
export LANG=en_US.UTF-8
|
|
|
|
# Make GPG and Git signing behave!
|
|
export GPG_TTY=$(tty)
|