ZSH is a shell on steroids, it has multiple plugins and functionality that can save a lot of time.
To install zsh run in your command line:
sh -c "$(curl -fsSL <https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh>)"
<aside>
💡 If you previously haven’t installed git on the machine, a prompt to install git will show up. After installation, run the sh
command from above again.
</aside>
<aside>
âť• Make sure you have a ~/.zshrc
exists, if not it might be an indicator that the installation failed for some reason.
</aside>
Add the autocomplete plugin for autocompleting previously typed commands in the shell. Follow the instructions here.
Powerlevel10k is a theme for Zsh. It emphasizes speed, flexibility, and out-of-the-box experience.
Clone the repository:
git clone --depth=1 <https://github.com/romkatv/powerlevel10k.git> ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
Set ZSH_THEME="powerlevel10k/powerlevel10k"
in ~/.zshrc
.
Restart your terminal and follow the onboarding wizard to configure it to your likings and preferences.
Every developer utilizes Command Line Tools. A simple terminal command will allow you to download these. It will ask you to confirm after you have entered the command.
xcode-select --install