Meaningful Emojis for git status with Oh-My-Zsh πŸŽ‰

Martin Jaskulla
1 min readMay 10, 2020

--

Basic usage

This guide assumes you already have Oh-My-Zsh installed.

Emojis:

  • Untracked: 🐾
  • Added: 🐣
  • Modified: ✏️
  • Deleted: βœ‚οΈ
  • Renamed: 🎭
  • Unmerged: 🀼
  • Behind: 🧩
  • Ahead: πŸƒ
  • Diverged: πŸ’”

Steps:

1️⃣ Create the theme file

touch ~/.oh-my-zsh/themes/emoji.zsh-theme

2️⃣ Paste the contents of the gist into ~/.oh-my-zsh/themes/emoji.zsh-theme

Feel free to change the emojis

3️⃣ Set your theme in ~/.zshrc

ZSH_THEME="emoji"

4️⃣ Restart your terminal

5️⃣ Increase your line-height

6️⃣ Enjoy πŸŽ‰

Oops

--

--