ohmyzsh
🙃 A delightful community-driven (with 2,400+ contributors) framework for managing your zsh configuration. Includes 300+ optional plugins (rails, git, macOS, hub, docker, homebrew, node, php, python, etc), 140+ themes to spice up your morning, and an auto-update tool that makes it easy to keep up with the latest updates from the community. (by ohmyzsh)
zsh-syntax-highlighting
Fish shell like syntax highlighting for Zsh. (by zsh-users)
ohmyzsh | zsh-syntax-highlighting | |
---|---|---|
604 | 76 | |
176,834 | 20,862 | |
0.7% | 1.2% | |
9.4 | 2.8 | |
11 days ago | 4 months ago | |
Shell | Shell | |
MIT License | BSD 3-clause "New" or "Revised" License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
ohmyzsh
Posts with mentions or reviews of ohmyzsh.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-03-20.
-
OhMyZsh and Janus: Set Up Productive Work Environment in 10 Minutes or Less
The first tool I always install is OhMyZsh.
-
Switching from tmux to Zellij
That's it! Happy CLI mastery with Zellij, Oh My zsh and Alacritty!
-
Supercharge Your Mac Terminal: A Step-by-Step Guide to iTerm2, Oh My Zsh & Powerlevel10k
Step 2: Setting Up Oh My ZSH
-
The easiest way to set up and configure your AWS CLI
If you are using Oh My ZSH as your shell of choice, you can add plugins=(... aws ) to your .zshrc / profile and besides having autocomplete for the AWS CLI you will also immediately see in the terminal window what is the current AWS profile you are logged in.
-
Adding time to bash history
Good news if you use zsh: just type history -i
-
TIL: Ghostty — a new and quite promising terminal emulator
I've mentioned above that I've been using robbyrussell (from here) for my iTerm2 terminal setup, so I wondered if the same one is available. I was about to start googling the list of available topics, but I've noticed a hint in the Ghostty doc to run ghostty +list-themes in the terminal, and here is what has happened:
-
My Terminal Setup for 2025 🚀
ZSH and Oh My ZSH offer superpowers to your terminal thanks to its customization and wide variety of plugins.
-
Can we communally deprecate Git checkout?
I made that exact thought many years ago and came to the direct opposite conclusion. It was worth the cognitive overhead to make the change and I haven't looked back. Most of the time I'm just hitting aliases (from OMZ's git plugin) https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/git e.g.
gsw git switch
-
Essential Kubernetes Setup for DevOps and Developers - A Community Based Guide
Zsh + Oh My Zsh Zsh + Oh My Zsh (OMZ) is a powerful and highly customizable shell setup. Zsh is an advanced shell that enhances the default bash experience with features like better autocompletion, improved scripting, and a more user-friendly syntax. Oh My Zsh is a framework that simplifies the management of Zsh configurations by providing a large collection of plugins, themes, and additional features. It helps improve your terminal productivity with tools like autocompletion for Git, Docker, Kubernetes, and more, while also offering eye-catching themes and an easy-to-manage configuration system. github
-
node unsupported engine when updating npm
Installing oh-my-zsh-nvm plugin (when zsh is in use)
zsh-syntax-highlighting
Posts with mentions or reviews of zsh-syntax-highlighting.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2025-02-08.
-
Supercharge Your Mac Terminal: A Step-by-Step Guide to iTerm2, Oh My Zsh & Powerlevel10k
# 1. Backup existing configuration cp ~/.zshrc ~/.zshrc.backup 2>/dev/null || echo "No existing ~/.zshrc" # 2. Install Homebrew /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" # 3. Install iTerm2 brew install --cask iterm2 # 4. Install Oh My Zsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" # 5. Install Powerlevel10k theme git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k sed -i '' 's/ZSH_THEME="robbyrussell"/ZSH_THEME="powerlevel10k\/powerlevel10k"/' ~/.zshrc # 6. Install essential plugins git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting brew install autojump # 7. Restart terminal or reload configuration source ~/.zshrc
-
Make the zsh Prompt Go Faster
zsh can compile zsh scripts using the builtin zcompile into wordcode. This will have the effect of having faster parsing. The way we use this to get a faster prompt is to explicitly ask zsh to compile certain chunky plugins(think your syntax highlighters and completion plugins) into wordcode.
-
Finding Terminal Utopia
Lastly, let’s make what commands we’re running easier to read, using zsh-syntax-highlighting. This script (which must be loaded before the zsh-history-substring-search above) will provide syntax highlighting of commands as you write them. This will help you avoid typos for incorrect commands, and make complex commands easier to read.
-
Melhorando e configurando seu novo Shell linux. Pt-2
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions && git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting && git clone https://github.com/zdharma-continuum/fast-syntax-highlighting.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/fast-syntax-highlighting && git clone --depth 1 -- https://github.com/marlonrichert/zsh-autocomplete.git $ZSH_CUSTOM/plugins/zsh-autocomplete
-
Setting up a MacBook for development in 2024
brew install fzf # for fuzzy find files, commands, etc brew install starship $(brew --prefix)/opt/fzf/install git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting # syntax highlight for zsh git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions # smart autosuggestions for zsh echo 'eval "$(starship init zsh)"' >> ~/.zshrc
-
Quickest path to a decent zsh setup?
# run this git clone https://github.com/zsh-users/zsh-syntax-highlighting $ZSH/custom/zsh-syntax-highlighting # add this to your .zshrc plugin=(... zsh-syntax-highlighting)
-
Arch Installation for Beginners
$ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting $ git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
-
Configurando Alpine Linux, tmux e neovim no WSL2 - parte 1
sudo git clone https://github.com/zsh-users/zsh-syntax-highlighting.git echo "source ${(q-)PWD}/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ${ZDOTDIR:-$HOME}/.zshrc
- better than admitting I'm too too lazy to correct the command
-
[Question] What are the best plugins for zsh ?
Two by far the most popular plugins are zsh-syntax-highlighting and zsh-autosuggestions. They are of high quality and quite useful.
What are some alternatives?
When comparing ohmyzsh and zsh-syntax-highlighting you can also consider the following projects:
oh-my-posh - The most customisable and low-latency cross platform/shell prompt renderer
fast-syntax-highlighting - (Short name F-Sy-H). Syntax-highlighting for Zshell – fine granularity, number of features and multiple shipped themes.
starship - ☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell!
ble.sh - Bash Line Editor―a line editor written in pure Bash with syntax highlighting, auto suggestions, vim modes, etc. for Bash interactive sessions.
powerlevel10k - A Zsh theme
zsh-auto-notify - ⏰ ZSH plugin that automatically sends out a notification when a long running task has completed.