Advertisement
BaapJaan

OMZ + Powerlevel10k Installation Commands for MacOS

Oct 7th, 2023 (edited)
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. 1. Install Oh My Zsh:
  2. sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
  3.  
  4. 2. Install Powerlevel10k Theme
  5. git clone https://github.com/romkatv/powerlevel10k $ZSH_CUSTOM/themes/powerlevel10k
  6.  
  7. 3. Install Auto Suggestions Plugin
  8. git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
  9.  
  10. 4. Install Syntax Highlighting
  11. git clone https://github.com/zsh-users/zsh-syntax-highlighting $ZSH_CUSTOM/plugins/zsh-syntax-highlighting
  12.  
  13. 5. Install Micro
  14. sudo curl https://getmic.ro | bash
  15.  
  16. 6. Open your .zshrc file with Micro
  17. ./micro ~/.zshrc
  18. 🔴 (You can Skip This step if you use this command nano ~/.zshrc)
  19.  
  20. 7. Set theme to (includes the quotes)
  21. "powerlevel10k/powerlevel10k"
  22.  
  23. 8. Activate Enable Correction
  24.  
  25. #ENABLE_CORRECTION="true"
  26. to this
  27. ENABLE_CORRECTION="true"
  28.  
  29. 9. Add our plugins
  30. plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
  31.  
  32. 10. Save by pressing CNTRL + Q and then type Y to save
  33.  
  34. 11. Download Nerd Fonts
  35. https://www.nerdfonts.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement