zoxide


📂 Installing Zoxide on Different Linux Distributions

Zoxide is a smarter, faster way to navigate your filesystem. It keeps track of your most frequently used directories and allows you to jump to them instantly. Here’s how you can install and configure Zoxide on Debian-based systems, Fedora, and Arch Linux.

🐧 For Debian-Based Systems

📦 Install Zoxide:

sudo apt install zoxide
  

⚙️ Configure for Bash:

nano ~/.bashrc
eval "$(zoxide init bash)"
  

🐟 Configure for Fish:

echo 'zoxide init fish | source' >> ~/.config/fish/config.fish
exec fish
  

🟣 For Fedora

📦 Install Zoxide:

sudo dnf install zoxide
  

⚙️ Configure for Bash:

nano ~/.bashrc
eval "$(zoxide init bash)"
  

🐟 Configure for Fish:

echo 'zoxide init fish | source' >> ~/.config/fish/config.fish
exec fish
  

💙 For Arch Linux

📦 Install Zoxide:

sudo pacman -S zoxide
  

⚙️ Configure for Bash:

nano ~/.bashrc
eval "$(zoxide init bash)"
  

🐟 Configure for Fish:

echo 'zoxide init fish | source' >> ~/.config/fish/config.fish
exec fish
  

💡 Why Use Zoxide?

Zoxide simplifies filesystem navigation by allowing you to jump to frequently used directories with minimal effort.

Instead of typing a long command like:

cd /very/long/directory/path
  

You can simply type:

z path
  

This lightweight utility is an essential tool for anyone looking to streamline their command-line workflow. Whether you’re on Debian, Fedora, or Arch Linux, Zoxide can be installed and configured quickly and easily for both Bash and Fish shells.