This commit is contained in:
Nickolaj Jepsen 2026-01-11 23:00:26 +01:00
parent 002fad13df
commit 1010e8150f
7 changed files with 376 additions and 0 deletions

View file

@ -0,0 +1,22 @@
# ds autocomplete (if installed)
if command -v ds &> /dev/null; then
eval "$(_DS_COMPLETE=zsh_source ds)"
fi
# Additional tool completions
# fzf integration for better history search (fish-like experience)
if command -v fzf &> /dev/null; then
# Use fzf for Ctrl+R history search
source <(fzf --zsh 2>/dev/null || true)
fi
# direnv integration
if command -v direnv &> /dev/null; then
eval "$(direnv hook zsh)"
fi
# zoxide integration (if installed, provides better cd)
if command -v zoxide &> /dev/null; then
eval "$(zoxide init zsh)"
fi