Nvidia A100 GPU with AMD EPYC 7402P Pre-order now

How to Install Oh My Zsh on Ubuntu 20.04 to Boost Your Productivity

December 13th, 2021
How to Install Oh My Zsh on Ubuntu 20.04 to Boost Your Productivity

In this Oh My Zsh Ubuntu installation tutorial, we will first explain what Zsh and Oh My Zsh are, highlight Zsh vs. Bash differences, and then walk you through how to install Oh My Zsh on Ubuntu 20.04 server, including instructions on how to start using it.

What is ZSH - Z Shell Terminal?

Z shell (Zsh) is a powerful Unix command interpreter (shell) with lots of interactive features. It is the default shell of MacOS, also available for Linux and Windows users. Just like the Linux-native Bash shell, Zsh is also a scripting language that allows you to write your own scripts and automate tasks.

In this guide you are going to install Zsh with its configuration management framework Oh My Zsh, and start using some of its amazing productivity tweaks, like:

  • Improved Directory Navigation
  • Advanced Tab Auto-completion
  • Enhanced History Search
  • Custom Themes
  • Custom Plugins
  • And more!

Zsh vs Bash differences

Both Zsh and Bash are open-source command-line interpreters that are widely adopted. Zsh is backwards compatible to Bash with nearly identical syntax, making a transition between the two not complicated at all. Most of the commands and interaction patterns you have learned for bash will also work in Zsh.

Speaking about the differences between Zsh vs Bash, one aspect is that Zsh has much more interactive customization features than Bash. Users have many more possibilities to personalize their shell by setting up a theme and tapping into a vast ecosystem of Zsh plugins that introduce many little interactivity tweaks.

Although incremental gains may look small at first glance, all those little productivity tweaks accumulate, and you are quickly taken to the next level or command-line performance.

What is Oh My Zsh Community?

Oh My Zsh is an open-source, community-driven framework for managing your Zsh configuration. With more than 140 pre-built themes and 300 plugins it is a great place to start customizing your Zsh terminal and unleash your new command-line superpowers.

Prerequisites

To follow along you will need:

  • A working Ubuntu 20.04 machine
  • A basic understanding of the command-line interface

How to Install Oh My Zsh on Ubuntu 20.04

Before starting with the Oh My Zsh setup, you will first have to install Zsh. Therefore, we will first show you how to install Zsh on Ubuntu 20.04 and then continue with Oh My Zsh setup instructions, after which we will highlight ways to start using it.

Let's dive right in - first, complete the following steps:

Step 1: Install Zsh on Ubuntu 20.04

1: Update your software repositories

Before starting any installation, it is always a good idea to update your software repositories. Open your good old Bash terminal and use the following command:

sudo apt update

2: Install Zsh from Ubuntu repositories

After you've updated your software repositories, you are ready to install Zsh from official Ubuntu repositories. We are here using -a option to automatically agree to all installation prompts:

sudo apt install -y zsh

You can make sure that Zsh is installed by looking at the path to its binary file:

which zsh

The output should look like this:

/usr/bin/zsh

3: Make Zsh your default shell

As you have successfully installed Zsh, you can now make it your default shell. Use the chsh command with -c option and the path to Zsh binary to do so:

sudo chsh -s /usr/bin/zsh

This will modify the /etc/passwd users file to load Zsh as your default shell every time you login to a terminal session with your username. After restarting your terminal feel free to check your current shell by printing the $SHELL environment variable to your terminal:

echo $SHELL

The output should look like this:

/usr/bin/zsh

Congrats, Zsh is now your default terminal shell.

Step 2: Oh My Zsh setup on Ubuntu 20.04

Even though you are now using Zsh as your default shell, it is not that different from Bash yet. You can start extending Zsh from scratch on your own, but it’s a better idea to tap into the Oh My Zsh ecosystem and experiment with what has already been created by the community.

Oh My Zsh installation takes just a few steps. First, run the apt install command to make sure you have curl installed on your Ubuntu system:

sudo apt install curl

Either you will have curl installed, or you will be assured that it is already on your system. To start the installation, download and run the Oh My Zsh installation script from its official GitHub repository:

sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

install Zsh

It takes just a few seconds and voilà! you have Oh My Zsh installed.

Start using Basic Oh My Zsh Functionality

There are many great productivity tweaks that you can start using right away after installing Oh My Zsh. Let‘s review some of its functionality.

Working With Directories in Zsh

A lot of time is spent in the terminal navigating through your directories. Being able to enhance basic navigation is the first superpower you are going to get from the Oh My Zsh framework.

Directory Path Expansion

There‘s no longer a need to type in the full directory path in order to use it. You may enter the first few letters of the directory names and press TAB to expand your hint into a full path. For instance, type /e/3.8 and press TAB to have it expanded into /etc/python3.8.

Swift Directory Access

You can now omit the cd command and type the path to your preferred directory directly in the terminal to get into it. For instance, type ~ to cd into your home directory or / to cd into your root directory.

Directory Access History

Zsh keeps a history of the accessed directories. You may check it by using the d command that is aliased for dirs -v | head -10 to see 10 latest directories you were in:

directory access history

Use the associated number access a directory from your history cache. For isntance, type 3 and press ENTER to get into /etc/fonts.

Advanced Tab Autocompletion in Zsh

Another powerful Zsh feature is its tab completion system. It tries to suggest available commands according to the command-line context. For instance, it may suggest your available scripts, environment variables, commands and even command options.

Type system and press TAB to get a list of auto suggestions. You may hit TAB again to start navigating through the available programs. Use TAB or arrow keys to navigate through the list:

programs autocomplete

Similarly, type systemctl, put a space and then hit TAB to get a list of available systemctl commands with their descriptions. Hit TAB again to start navigating through the list:

commands autocomplete

Enter systemctl - and hit TAB a few times to navigate through a list of available systemctl options with their descriptions:

command options autocomplete

And if you want to see some true magic happening, type systemctl stop, put a space, and hit TAB to see a list of all available Linux processes that are currently running on your machine and are eligible for systemctl stop command:

target processes autocomplete

It’s easy to start using advanced tab autocompletion, and the productivity boost is significant. Make it another tool in your command-line arsenal.

Enhanced History Search

Typically, you would use CTRL + R to invoke reverse history search. It allows you to search for any word in your command string in your command history. Press CTRL + R and type a substring oh-my to find the last command with this substring:

zsh reverse search

You may keep pressing CTRL + R to go backwards through history. Alternatively, use CTRL + S to go forwards.

Zsh introduces one little tweak to this functionality. If you remember the beginning of a command that you are looking for, type it in and use UP and DOWN keys to traverse back and forth through the history filtered by your given substring. For instance, enter apt and hit UP to find the last command beginning with this substring.

Install a Theme for Zsh

The first thing you notice when someone is using Zsh is its unique appearance. A theme is a predefined prompt configuration that adds distinctive colors and some useful information to your terminal.

Oh My Zsh comes with more than 140 predefined themes for you to choose from. Check ~/.oh-my-zsh/themes directory to see the full list of installed themes:

ls ~/.oh-my-zsh/themes

Let’s now change the default “robbyrussel” theme to something more beautiful and informative. To do so you need to open your Zsh configuration file:

vim ~/.zshrc

And change the ZSH_THEME variable by setting its value to your preferred theme, for instance:

ZSH_THEME="strug"

Save the .zshrc configuration file and load it again:

source ~/.zshrc

You can now see a new theme has been loaded:

zsh theme loaded

This theme includes your username root, hostname loving-mole, and current directory ~ in your prompt.

And if you move to a directory where Git has been initiated, you will automatically see which branch you are on:

zsh theme with git initiated

Not a revolution, but it will spare you a few unnecessary git branch commands every now and then.

Enable Zsh Plugins

A Zsh plugin is a set of useful aliases and functions designed to make you more productive when using your favorite command-line tools. Oh My Zsh comes with more than 300 pre-built plugins that are available out-of-the-box.

By default, pre-built plugins are disabled. You may find a list of locally installed plugins in the ~/.oh-my-zsh/plugins directory. In order to enable a plugin in Oh My Zsh, modify the plugins line of the .zshrc configuration file by adding names of your preferred plugins separated by spaces:

plugins=(plugin_1 plugin_2 plugin_3 …)

Let’s now enable and test some of the pre-built Oh My Zsh plugins.

Dirhistory plugin

Remember directory access history? This plugin improves navigation through your directories even further. It adds keyboard bindings to allow you navigate through the directory history even easier. Start by adding dirhisotry to the configuration file:

plugins=(… dirhistory)

Save the file and reload zsh configuration:

source ~/.zshrc

It is now possible to use the following key bindings to navigate through your directory history:

  • ALT + LEFT – go to previous directory
  • ALT + RIGHT – go to next directory
  • ALT + UP – move into parent directory
  • ALT + DOWN – move to the first child directory

History Plugin

Many Oh My Zsh plugins are just a bunch of practical aliases that were created by experienced system administrators. History plugin provides a couple of convenient aliases for the history command. Turn it on by modifying the Zsh configuration file:

plugins=(… history)

And you will have the following aliases available:

  • h (history) – prints your command history
  • hs (history | grep) – use grep to search your command history
  • his (history | grep -i) use grep to do case-sensitive command history search

Colored Man Pages Plugin

How often do you go through the help pages of a specific command-line utility? The Colored Man Pages Plugin makes you a faster reader by coloring different commands and their arguments to make them immediatelly noticable in the document. Enable it by modifying the Zsh configuration file:

plugins=(… colored-man-pages)

After loading the configuration file, try using man grep to see the changed grep manual:

colored grep manual page

JSON Tools Plugin

JSON serves as the de facto data standard for web development, and you may often need to use it directly in your terminal, especially when testing new API calls. JSON Tools Plugin makes this experience much more convenient. Try this plugin out by editing the Zsh configuration file:

plugins=(… jsontools)

You may now pipe your JSON data into an appropriate jsontool. For instance, a default JSON dump is a mess that is hardly readable. Try fetching a list of all dog breeds from the famous Dog API service just to see how bad it is:

curl https://dog.ceo/api/breeds/list/all

messy JSON dump

Let’s pipe this JSON dump through the pretty print jsontool:

curl https://dog.ceo/api/breeds/list/all | pp_json

clean JSON dump

Now even humans can read it.

Install Custom Zsh Plugins

Aside from the default Zsh plugins that are shipped with Oh My Zsh, there are many other popular plugins that you can install on your own to further expand your Zsh functionality and increase your productivity.

Autosuggestions Plugin

One of the most popular custom Zsh plugins is zsh-autosuggestions. It suggests commands based on your history and available completions. Follow the custom installation guide to add it on your Oh My Zsh framework.

After installing the plugin start typing a command and autosuggest will generate a suggestion for you:

autosuggest commands

To accept the suggestion, hit END or RIGHT arrow.

There are many additional options and key bindings that you may setup for autosuggestions. Check the official documentation if you like this plugin and want to customize it further.

Syntax Highlighting Plugin

Zsh Syntax Highlighting Plugin enables highlighting of commands whilst they are typed into a Zsh terminal prompt. It is helpful when you are writing long commands where it is easy to make syntax errors. Follow the custom installation guide to add it on your Oh My Zsh framework.

After installing the plugin type in a slightly modified command for fetching a pretty list of dog breeds to see syntax highlighting in action:

command syntax highlighting

As you can see, your commands are now colorful and more informative. Legitimate commands are put in green, unfamiliar commands are red, command options are white, and strings are yellow. Less syntax errors guaranteed!

Autojump Plugin

Last, but not least, is the Autojump Zsh Plugin. It gives you an even faster way to navigate your filesystem. Autojump keeps its own history file with a weighted list of your visited directories. It then tries to guess the full path of the directory you want to visit by the given directory name and its weight.

Follow the custom installation guide to add autojump on your Oh My Zsh framework.

After installing autojump and using it for a while you will populate your autojump history file. You may check it with autojump -s command:

autojump history list

As you can see, some of the directories were visited more and have a higher weight.

Let’s say you are now in your home directory and would like to jump into the ../warehouse directory:

autojump example

After you execute the command, you are automatically taken into the ../warehouse directory with the highest historical weight:

autojump example in action

Try jumping back and forth to get used and integrate autojump into your everyday work if it works for you.

Configure Zsh Further

After you had installed Oh My Zsh a startup configuration file .zshrc was created in your home directory. It is a shell startup file where you put your commands, aliases, functions, options, and key bindings. This file is loaded automatically when you initiate a new terminal session.

We have already made changes to the .zshrc file when adding custom themes and plugins. Let’s now make some additional changes to solidify your Zsh environment even further. Open the configuration file and start editing:

vim ~/.zshrc

Automatic Updates

You may want to enable automatic Oh My Zsh updates. Uncomment the following line to update Oh My Zsh as soon as the new version is available:

zstyle ':omz:update' mode auto

History Timestamps

It’s also handy to have a time stamp for every history command. Uncomment the following line and choose your date format to enable this feature:

HIST_STAMPS="yyyy-mm-dd"

This will put a timestamp next to every command that is showed by the history command:

hisotry timestamps

Vim Key Bindings

If you are an avid Vim user, enable Vim key bindings. This will put you in the insert mode by default when you open your terminal. Hit ESC button to enter the command mode instead. You may enable Vim key bindings with the following line:

bindkey -v

Bear in mind that this option will disable the default emacs key bindings. For instance, you won’t be able to use CTRL + R to enter the reverse search mode anymore. However, you can redefine missing emacs key bindings yourself with the following pattern:

bindkey [keys] [function]

To restore the reverse search functionality with Vim key bindings add the following line:

bindkey '^r' history-incremental-search-backward

This option will re-enable CTRL + R key combination for invoking backwards history search.

Additional Aliases

You may also add your own aliases to .zshrc file. For instance, let’s add the following alias to make it more convenient to access the zshrc file:

alias zconf="vim ~/.zshrc"

Now every time you type zconf into the terminal, you will automatically vim into the .zshrc file.

Load Changes

When you finish making changes to the .zshrc file, don’t forget to load it into your shell. The source command will read and execute commands from a specified file and load them into your current shell environment:

source ~/.zshrc

Conclusion

You may keep modifying your Zsh environment further and add your own tweaks. There are no limits to how you can change your command line environment, since Zsh is also a powerful scripting language. If you decide to go down this rabbit hole, brace yourself and take look at the official zsh documentation.

Mantas is a hands-on growth marketer with expertise in Linux, Ansible, Python, Git, Docker, dbt, PostgreSQL, Power BI, analytics engineering, and technical writing. With more than seven years of experience in a fast-paced Cloud Computing market, Mantas is responsible for creating and implementing data-driven growth marketing strategies concerning PPC, SEO, email, and affiliate marketing initiatives in the company. In addition to business expertise, Mantas also has hands-on experience working with cloud-native and analytics engineering technologies. He is also an expert in authoring topics like Ubuntu, Ansible, Docker, GPU computing, and other DevOps-related technologies. Mantas received his B.Sc. in Psychology from Vilnius University and resides in Siauliai, Lithuania.

Cloud VPS - Cheaper Each Month

Start with $9.99 and pay $0.5 less until your price reaches $6 / month.

We use cookies to ensure seamless user experience for our website. Required cookies - technical, functional and analytical - are set automatically. Please accept the use of targeted cookies to ensure the best marketing experience for your user journey. You may revoke your consent at any time through our Cookie Policy.
build: 9307d02f.596