mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 11:06:41 +00:00
12 lines
213 B
Bash
12 lines
213 B
Bash
#
|
|
# zoxide Setup
|
|
#
|
|
|
|
if command-exists zoxide; then
|
|
eval "$(zoxide init --cmd zox zsh)"
|
|
|
|
# Use functions to allow regular zsh completion for cd to work.
|
|
cd() { __zoxide_z "$@"; }
|
|
alias cdi='__zoxide_zi'
|
|
fi
|