Files
dotfiles/zsh/zoxide.zsh

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