Last active
March 17, 2020 18:34
-
-
Save c33k/6ad932c8caf4e6c4db91a6dbdc3af6e1 to your computer and use it in GitHub Desktop.
iterm2 + zsh + 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
# Here is a summary of many gists I've seen so far. | |
This https://gist.github.com/kevin-smets/8568070 was the most useful one. | |
brew cask install iterm2 // or downloading it... | |
brew install zsh | |
#install oh_my_zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
#POWERLEVEL10k - adds info such as exit codes and timestamps on the right, run: | |
git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k | |
Then edit your ~/.zshrc and set ZSH_THEME="powerlevel10k/powerlevel10k". | |
Also add the following: POWERLEVEL9K_MODE="awesome-patched" | |
# Auto Suggestions | |
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions | |
### inside .zshrc, add zsh-autosuggestions to the list of plugins: | |
plugins=(zsh-autosuggestions) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment