CraftGears

Simplifying Zsh Setup with .dotfiles

· 4 min read
Simplifying Zsh Setup with .dotfiles

macOS has switched its default shell to Zsh, while Fedora still uses Bash by default. Default shells are often too minimal, requiring users to customize them. Repeating this setup across systems can be tedious. That’s why many users have been managing their configurations with a Git repository called .dotfiles for years.

Features #

My setup doesn’t include a plethora of features but focuses on a few essentials:

  • starship
  • oh-my-zsh
  • oh-my-tmux
  • zoxide
  • zsh-autosuggestions
  • zsh-syntax-highlighting

Starship

Starship enhances the prompt with a sleek appearance. I’ve been using it for years, and it’s fast and easy to customize. Visit the link below to install the prerequisite FiraCode Nerd Font and set it as your terminal font.

https://github.com/fluidicon.png
GitHub - starship/starship: ☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell!
☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell! - starship/starship
https://github.com/starship/starship

Oh My Zsh

Oh My Zsh makes it easy to use themes and plugins. While I don’t use themes, plugins can be added as needed. Check out the plugin list via the link below.

https://github.com/fluidicon.png
Plugins · ohmyzsh/ohmyzsh Wiki · GitHub
🙃 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. - Plugins · ohmyzsh/ohmyzsh Wiki
https://github.com/ohmyzsh/ohmyzsh/wiki/plugins

Oh My Tmux

tmux is indispensable for me, but its setup and usage can be complex. Oh My Tmux simplifies most of the configurations. I stick to the default options.

https://github.com/fluidicon.png
GitHub - gpakosz/.tmux: Oh my tmux! My self-contained, pretty & versatile tmux configuration made with 💛🩷💙🖤❤️🤍
Oh my tmux! My self-contained, pretty & versatile tmux configuration made with 💛🩷💙🖤❤️🤍 - gpakosz/.tmux
https://github.com/gpakosz/.tmux

One tool worth mentioning is Tmux Project, which lets you define layouts easily.

https://github.com/fluidicon.png
GitHub - tmux-python/tmuxp: 🖥️ Session manager for tmux, build on libtmux.
🖥️ Session manager for tmux, build on libtmux. Contribute to tmux-python/tmuxp development by creating an account on GitHub.
https://github.com/tmux-python/tmuxp

zoxide

I used to rely on autojump, but zoxide, written in Rust, offers better speed. It’s not just for navigating directories but also for jumping to frequently visited directories in a single command. It’s truly a fantastic tool.

zsh-autosuggestions

This feature suggests previously used commands for reuse. It’s incredibly handy and works by pressing the right arrow key after partially typing a command. For navigation within words, Windows uses Ctrl + , while macOS requires + . To fix macOS compatibility, I added the following code to .zshrc:

# Bind keys
bindkey "\e[1;3D" backward-word     # ⌥←
bindkey "\e[1;3C" forward-word      # ⌥→

To move to the beginning or end of a line, use Fn + or Fn + , respectively.

zsh-syntax-highlighting

This package adds syntax highlighting to the Zsh shell. Commands typed in the prompt are highlighted interactively, helping users spot syntax errors before execution. It’s particularly useful for command review.

Installation #

A simple explanation is available in the Git repository below:

https://github.com/fluidicon.png
GitHub - craftgears/.dotfiles
Contribute to craftgears/.dotfiles development by creating an account on GitHub.
https://github.com/craftgears/.dotfiles

Here’s a quick summary of the steps:

  1. Clone the .dotfiles repository into your home directory (~).
  2. If Zsh is not installed, install it and set it as your default shell.
  3. Run .dotfiles/install.sh to create symbolic links.
  4. If Starship is not yet installed, install it.
  5. Install zoxide.

Restart your shell, and you should see something like this. My setup includes Fedora customization.

Prompt

For Fedora, I modified .zshenv to change the STARSHIP_CONFIG, resulting in a different look:

cat ~/.zshenv
...
export STARSHIP_CONFIG=~/.dotfiles/themes/starship/gruvbox_dark.toml

VS Code Terminal #

The terminal in Visual Studio Code might not display the prompt as expected because .zlogin is not called. Add the following settings to fix this:

{
  "terminal.integrated.fontFamily": "FiraMono Nerd Font",
  "terminal.integrated.defaultProfile.linux": "zsh",
  "terminal.integrated.profiles.linux": {
      "zsh": {
          "path": "/usr/bin/zsh",
          "args": ["--login"]
      }
  }
}
Prompt

Conclusion #

Setting up a shell is not an easy task. Customizing aliases and plugins requires personal preferences. My setup focuses on minimal configurations that I adjust as needed for different systems. Why not build your own .dotfiles to streamline your workflow?

Did you find this post helpful?
Share it with others!