Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 804 Bytes

zoxide.md

File metadata and controls

34 lines (23 loc) · 804 Bytes

Zoxide

Zoxide is a smarter cd command that remembers which directories you use so you can jump to them in just a few keystrokes.

Include fzf a command-line fuzzy finder which will add an interactive cdi command or allow you to type cd src [SPACE][TAB] to autocomplete.

Install

Windows PowerShell

winget install ajeetdsouza.zoxide
winget install fzf

Add to Profile.ps1

Invoke-Expression (& { (zoxide init --cmd cd powershell | Out-String) })

Linux ZSH

curl -sSfL https://raw.githubusercontent.com/ajeetdsouza/zoxide/main/install.sh | sh
sudo apt update
sudo apt install fzf

Add to the end of .zshrc

eval "$(zoxide init --cmd cd zsh)"