- Checkout this repo somewhere like
~/zsh
- Install Oh My Zsh!
- Install Powerlevel10k theme
- Run
p10k configure
- Here are the settings I used (copied from the comment in
~/.p10k.zsh
):
# Wizard options: nerdfont-complete + powerline, small icons, classic, unicode, dark, # 12h time, angled separators, sharp heads, flat tails, 1 line, compact, many icons, # concise, instant_prompt=verbose.
- Here are the settings I used (copied from the comment in
- Install zsh-syntax-highlighting plugin
- Install zsh-autosuggestions plugin
- Enable plugins (see Plugins Reference)
- Install lsd (makes
ls
much prettier) - Install java versions (and update the switching commands in zshrc.sh as necessary)
- Install pyenv to manage python
- Add the following to the end of
~/.zshrc
:# Load my stuff source <this-repo>/*.sh
This is what the plugins=
field should look like in ~/.zshrc
:
plugins=(
git
zsh-autosuggestions
kubectl
zsh-syntax-highlighting # This one has to go last
)