github
mac
Softwares I install

My Setup for mac:

brew install jump
eval "$(jump shell)"
eval "$(jump shell --bind=cd)"

Adding to end of .zshrc (if it is not there):

LINE='eval "$(jump shell)"'  
  
if ! grep -qF "$LINE" ~/.zshrc; then  
echo "$LINE" >> ~/.zshrc  
fi  
 
LINE='eval "$(jump shell --bind=cd)"'  
  
if ! grep -qF "$LINE" ~/.zshrc; then  
echo "$LINE" >> ~/.zshrc  
fi

or Maybe:

echo 'eval "$(jump shell)"' >> ~/.zshrc
echo 'eval "$(jump shell --bind=cd)"' >> ~/.zshrc