6 lines
123 B
Bash
6 lines
123 B
Bash
#!/usr/bin/env zsh
|
|
|
|
# zoxide - a better `cd` command
|
|
if command -v zoxide &>/dev/null; then
|
|
eval "$(zoxide init zsh)"
|
|
fi
|