Skip to content

Instantly share code, notes, and snippets.

@cdburgess
Last active September 22, 2022 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdburgess/1b3c7f0c12ff95d39ecc03ec14d3bd3e to your computer and use it in GitHub Desktop.
Save cdburgess/1b3c7f0c12ff95d39ecc03ec14d3bd3e to your computer and use it in GitHub Desktop.
Powerlevel10k Theme for Mac Terminal
1. Install Oh My Zsh: (https://ohmyz.sh/)
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
2. Install Powerlevel10k Theme
git clone https://github.com/romkatv/powerlevel10k $ZSH_CUSTOM/themes/powerlevel10k
3. Install Auto Suggestions Plugin
git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
4. Install Syntax Highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
5. Install Micro (Optional if you don't want to use VIM)
sudo curl https://getmic.ro | bash
6. Open your .zshrc
- MICRO: ./micro ~/.zshrc
- VI(M): vi(m) ~/.zshrc
7. Set theme to (includes the quotes)
"powerlevel10k/powerlevel10k"
8. Activate Enable Correction
#ENABLE_CORRECTION="true"
to this
ENABLE_CORRECTION="true"
9. Add our plugins
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
10. Save the file:
- MICRO: CNTRL + Q and then type Y to save
- VI(M): :wq
11. Download Nerd Fonts (https://www.nerdfonts.com)
FiraMono Nerd Font
https://github.com/ryanoasis/nerd-fonts/releases/download/v2.2.2/FiraMono.zip
- unzip and install the font
12. Update terminal preferences
- select a dark background
- select the new font you just installed
Note: To reconfigure the theme, you can type `p10k configure` in the terminal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment