zsh
Oh My Zsh!
Unleash your terminal like never before.
Oh My Zsh is a delightful, open source, community-driven framework for managing your Zsh configuration. It comes bundled with thousands of helpful functions, helpers, plugins, themes, and a few things that make you shout…
“Oh My ZSH!”
Install
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
CLI tool
Usage: omz <command> [options]
Available commands:
help Print this help message
changelog Print the changelog
plugin <command> Manage plugins
pr <command> Manage Oh My Zsh Pull Requests
reload Reload the current zsh session
theme <command> Manage themes
update Update Oh My Zsh
version Show the version
Update all custom plugins/themes
omz_update_custom_plugins() {
red=$(tput setaf 1)
blue=$(tput setaf 4)
green=$(tput setaf 2)
reset=$(tput sgr0)
echo ""
printf "${blue}%s${reset}\n" "Upgrading custom plugins"
find "${ZSH_CUSTOM:-~/.oh-my-zsh/custom}" -type d -name ".git" | while read LINE; do
p=${LINE:h}
pushd -q "${p}"
if git pull --rebase; then
printf "${green}%s${reset}\n" "${p:t} has been updated and/or is at the current version."
else
printf "${red}%s${reset}\n" "There was an error updating ${p:t}. Try again later or figure out what went wrong..."
fi
popd -q
done
}
Powerlevel10k
Powerlevel10k is a theme for Zsh. It emphasizes speed, flexibility and out-of-the-box experience.
https://github.com/romkatv/powerlevel10k
Install using oh-my-zsh
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
Set ZSH_THEME="powerlevel10k/powerlevel10k"
in ~/.zshrc
.
During the next launch of zsh, you will be guided through the setup process. In the end, the program will add the following on the top of your .zshrc
:
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
fi
Update
git -C ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k pull
zsh Syntax Highlighting
Install via Oh My ZSH
- Clone it into the
ZSH_CUSTOM
directory:git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
- Add to plugins in
.zshrc
(as the last plugin)plugins=( [plugins...] zsh-syntax-highlighting)
Install via Homebrew
brew install zsh-syntax-highlighting
If not done automatically, add this to ~/.zshrc
:
source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh