Power up your Linux developer environment

Power up your Linux developer environment

And increasing productivity

Hi, welcome to my blog!

The objective of this article is to share my shell setup with you. I think that my job and day to day tasks became easier and more productive than using the “normal” bash. I hope that it helps you.

You will need the following tools:

Zsh - The Z shell.
Oh-My-Zsh - A framework for managing your Zsh configuration.
Starship - A fast and customizable prompt for any shell!

I assume that you already have git installed and have a little knowledge of using it to clone repositories.

Installing Zsh

First, you need to install Zsh. You can use your distribution package manager to install it easily.

For openSUSE:

sudo zypper install zsh

For Ubuntu:

sudo apt install zsh

For Fedora:

sudo dnf install zsh

After this you should set Zsh as your default shell:

chsh -s $(which zsh)

Now reboot your machine.

Installing Oh-My-Zsh

After rebooting, open your terminal and you should now be prompted by a Zsh configuration wizard. At this time you can just type q and ENTER because you will install and configure Oh-My-Zsh and it will install a .zshrc template for us:

  • curl or wget should be installed.

  • git should be installed.

sh -c “$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)””)

If Oh-My-Zsh was successfully installed, you should see that your prompt changes to a green one. The template configuration file is ~/.zshrc and it gives you tons of possibilities to configure your shell behavior, like prompt themes and plugins.

Loading some plugins

There is a lot of configurations that can be made in Zsh + Oh-My-Zsh, here I’ll just talk about a list of cool plugins that I use, but you can dive deeper to discover more possibilities. Plugins should be placed in plugins=(...) session of the configuration file. I use the following:

plugin namebrief description
colored-man-pagesadds colors to man pages
command-not-founduses the command-not-found package for Zsh to provide suggested packages
dockeradds auto-completion for docker
gitprovides many aliases and a few useful functions
npmprovides completion as well as adding many useful aliases
pep8adds completion for pep8
pipadds completion for pip
pyenvloads pyenv and pyenv-virtualenv
pythonadds several aliases for useful python commands
sudoprefix your current or previous commands with sudo by pressing esc twice
systemdprovides many useful aliases for systemd
ubuntuThis plugin adds completions and aliases for Ubuntu
zsh_reloadtype src to reload Zsh session
zsh-autosuggestionssuggests commands as you type based on history and completions
zsh-syntax-highlightingpackage provides syntax highlighting

You can always go to https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins to see a complete list of plugins and their respective documentation.

The last two plugins of my list aren’t part of the default Oh-My-Zsh installation and should be installed separately. Maybe you can install it with your distribution package manager, but I do prefer to install via Github to take advantage of possible new features.

As you are using Oh-My-Zsh as a plugin manager, and the plugins are already enabled in our .zshrc file, all you have to do is clone the project repository to our $ZSH_CUSTOM directory. Just type the following commands. For zsh-autosuggestions:

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions

And for zsh-syntax-highlighting:

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

Installing a better font

For better support icons and symbols, you have to install a modern font like Nerd Fonts. I use the Meslo, but you can choose your own and test it.

Now you have to configure your terminal emulator to use Meslo Nerd Fonts.

Theming the prompt with Starship

To finish the task, the last step is to install Starship that will bring a lot of goodies to our Zsh shell. The installation is very simple, just type:

  • curl should be installed.

curl -fsSL https://starship.rs/install.sh | zsh

Once installed, you have to enable it. Just place the following line at the end ~/.zshrc

eval “$(starship init zsh)”

It is a good idea to comment out the ZSH_THEME entry in ~/.zshrc

Configuring Starship

The configuration of Starship is easy to understand. First, you need to create de starship.toml file. It should be placed inside ~/.config:

mkdir -p ~/.config && touch ~/.config/starship.toml

After this, you have to fill the file with the options that you wish to change the default setup. By the way, the default setup is quite cool! As the configuration is a .toml file, all the options are of the type key : value, pretty intuitive.

The detailed information about every option is well described at the official documentation. However, I paste the one that I’m using to serve as a reference for you.

# Inserts a blank line between shell prompts
add_newline = true

# Customizing the prompt
format = """
$username\
$hostname\
$shlvl\
$singularity\
$kubernetes\
$directory\
$vcsh\
$git_branch\
$git_commit\
$git_state\
$git_metrics\
$git_status\
$hg_branch\
$docker_context\
$package\
$cmake\
$cobol\
$dart\
$deno\
$dotnet\
$elixir\
$elm\
$erlang\
$golang\
$helm\
$java\
$julia\
$kotlin\
$lua\
$nim\
$nodejs\
$ocaml\
$perl\
$php\
$pulumi\
$purescript\
$python\
$rlang\
$red\
$ruby\
$rust\
$scala\
$swift\
$terraform\
$vlang\
$vagrant\
$zig\
$nix_shell\
$conda\
$memory_usage\
$aws\
$gcloud\
$openstack\
$azure\
$env_var\
$crystal\
$custom\
$sudo\
$cmd_duration\
$line_break\
$jobs\
$battery\
$time\
$status\
$shell\
[$character](bold green)"""

# Configure if and how the time is shown
[time]
disabled = false
time_format = "%T"
format = "🕙[$time ](bold blue)"

[sudo]
disabled = false
style = "bold green"
symbol = "💪"
format = "[<SUDO>$symbol]($style)"

[status]
disabled = false
style = "bg:blue"
symbol = "🔴"
map_symbol = true
format = '[\[$symbol $common_meaning$signal_name$maybe_int\]]($style) '

# Inserts a blank line between shell prompts add_newline = true # Customizing the prompt format = """ $username\ $hostname\ $shlvl\ $singularity\ $kubernetes\ $directory\ $vcsh\ $git_branch\ $git_commit\ $git_state\ $git_metrics\ $git_status\ $hg_branch\ $docker_context\ $package\ $cmake\ $cobol\ $dart\ $deno\ $dotnet\ $elixir\ $elm\ $erlang\ $golang\ $helm\ $java\ $julia\ $kotlin\ $lua\ $nim\ $nodejs\ $ocaml\ $perl\ $php\ $pulumi\ $purescript\ $python\ $rlang\ $red\ $ruby\ $rust\ $scala\ $swift\ $terraform\ $vlang\ $vagrant\ $zig\ $nix_shell\ $conda\ $memory_usage\ $aws\ $gcloud\ $openstack\ $azure\ $env_var\ $crystal\ $custom\ $sudo\ $cmd_duration\ $line_break\ $jobs\ $battery\ $time\ $status\ $shell\ [$character](bold green)""" # Configure if and how the time is shown [time] disabled = false time_format = "%T" format = "🕙[$time ](bold blue)" [sudo] disabled = false style = "bold green" symbol = "💪" format = "<SUDO>$symbol" [status] disabled = false style = "bg:blue" symbol = "🔴" map_symbol = true format = '[$symbol $common_meaning$signal_name$maybe_int] '

Close and reopen your terminal to see the results. Cool! Isn’t it?!

That’s it! I hope this article can be useful. Thanks for reading!

based on https://guinuxbr.com/en/posts/zsh+oh-my-zsh+starship/

Did you find this article valuable?

Support Raphael Carlos Rego by becoming a sponsor. Any amount is appreciated!