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.
sudo apt install zoxide
.bashrc
file:
nano ~/.bashrc
eval "$(zoxide init bash)"
echo 'zoxide init fish | source' >> ~/.config/fish/config.fish
exec fish
– Run the following command:
sudo dnf install zoxide
.bashrc
file:
nano ~/.bashrc
eval "$(zoxide init bash)"
echo 'zoxide init fish | source' >> ~/.config/fish/config.fish
exec fish
– Run the following command:
sudo pacman -S zoxide
.bashrc
file:
nano ~/.bashrc
eval "$(zoxide init bash)"
echo 'zoxide init fish | source' >> ~/.config/fish/config.fish
exec fish
Zoxide simplifies filesystem navigation by allowing you to jump to frequently used directories with minimal effort. For example, 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.