zoxide: fine-tuning
β’ 83 words β’ 1 min
It remembers which directories you use most frequently, so you can “jump” to them in just a few keystrokes.
For example:
z perrotta.devjumps to~/Workspace/perrotta.dev/z dotfilesjumps to~/.dotfiles
I had one issue. Given these two directories:
~/corp/gitops~/corp/gitops-china
z gitops was selecting the gitops-china directory, which I barely use.
In order to remove it from the frequently accessed directories list, do:
shell
zoxide remove ~/corp/gitops-chinaNow z gitops jumps to ~/corp/gitops, as I originally intend most of the
time.