6 lines
120 B
Bash
6 lines
120 B
Bash
#!/usr/bin/env zsh
|
|
|
|
# zoxide - a better `cd` command
|
|
if (( ${+commands[zoxide]} )); then
|
|
eval "$(zoxide init zsh)"
|
|
fi
|