Power up your Linux developer environment
And increasing productivity

Experienced, creative, and motivated software engineer with a solid background in full stack software development and 18+ years of experience, acculturated in devsecops.
Search for a command to run...
And increasing productivity

Experienced, creative, and motivated software engineer with a solid background in full stack software development and 18+ years of experience, acculturated in devsecops.
No comments yet. Be the first to comment.
XSS injection is a serious security issue that can leave web applications vulnerable to attacks. While there are various methods to detect XSS vulnerabilities, one unconventional approach involves the use of a simple JavaScript code snippet. To perfo...

You may have entered a 6-digit code from a 2FA app like Google Authenticator 😬, but where did this code come from? The answer lies within the QR code and the inner workings of the Time-based One-time Password algorithm (TOTP) 🔍. In this article, we...

In today's world, digital security is more important than ever. With more and more of our personal and financial information stored online, protecting that information has become a top priority. Two-Factor Authentication (2FA) is an essential tool fo...

Kubernetes has become the standard for managing containerized applications, but setting up a development environment can be complex. However, with K3s and Traefik Proxy, it's possible to create a local Kubernetes cluster quickly and easily. 🧑💻 Set...

Are you planning to migrate your MongoDB replica set between Kubernetes clusters with zero downtime? This can be a challenging task, but with the right approach and tools, it's possible to achieve a seamless migration. 💡 Here are some tips to help y...

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.
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.
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.
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 name | brief description |
| colored-man-pages | adds colors to man pages |
| command-not-found | uses the command-not-found package for Zsh to provide suggested packages |
| docker | adds auto-completion for docker |
| git | provides many aliases and a few useful functions |
| npm | provides completion as well as adding many useful aliases |
| pep8 | adds completion for pep8 |
| pip | adds completion for pip |
| pyenv | loads pyenv and pyenv-virtualenv |
| python | adds several aliases for useful python commands |
| sudo | prefix your current or previous commands with sudo by pressing esc twice |
| systemd | provides many useful aliases for systemd |
| ubuntu | This plugin adds completions and aliases for Ubuntu |
| zsh_reload | type src to reload Zsh session |
| zsh-autosuggestions | suggests commands as you type based on history and completions |
| zsh-syntax-highlighting | package 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
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.
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 -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
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) '
|
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/