I am trying to add to my $PATH on MacOS (Monterey)
When I use
export PATH=$PATH:~/.composer/vendor/bin
It will add it to $PATH and I can see it when I use
echo $PATH
However when I reboot the computer, that item is removed from $PATH and needs to be added again.
Is there a way to permanently add it to the $PATH?
One thing I have noticed is that there is no ~/.profile file.
Do I need to make one and add something to it?