Last active
December 6, 2020 08:34
-
-
Save ShirishRam/6609e7e3b2bd6a1d82b19aea179a545c to your computer and use it in GitHub Desktop.
Oh My Zsh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Pre-requisites | |
1. zsh (5.0.8 or higher) | |
1. git (2.4.11 or higher) | |
2. curl or wget | |
# Install Oh My Zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
# Install powerlevel10k Zsh theme | |
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k | |
# Update zshrc | |
1. vi ~/.zshrc | |
Set ZSH_THEME="powerlevel10k/powerlevel10k" | |
2. source ~/.zshrc | |
You should see the prompt to configure powerlevel10k theme, keep following the instructions and configure the theme the way you want. | |
Cheers! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment