The first step to starting projects is to find a place to make it. And this usually happens in our favourite project locations.
- We open our terminal
- Do
cd
aftercd
to reach that sweet spot - And then make it
mkdir
Today, we talk about a no-brainer. We create an alias
to our projects folder in zsh
so that finding the sweet spot is easier.
Here is what you need to do -
Open zsh
nano ~/.zshrc
Add an alias
alias proj="cd /Users/your-username/path/to/projects"
Reload the shell
source ~/.zshrc
Reach the spot
proj
And now you are thinking - shit, I just wasted another 2 minutes of my life. Rofl.
Happy coding!
Top comments (0)