Common Issues
Common Issues
fzf not finding files:
# Check FZF_DEFAULT_COMMAND
echo $FZF_DEFAULT_COMMAND
# Test fd directly
fd --type f
# Check for hidden files
fd -H
Colors not working:
# Check terminal capabilities
echo $TERM
# Force color output
export CLICOLOR_FORCE=1
Slow shell startup:
# Profile startup time
time bash -i -c exit
# Identify slow sources
for f in ~/.bashrc ~/.bash_profile; do
echo "--- $f ---"
time source "$f"
done
zoxide not working:
# Check initialization
type z
# Rebuild database
zoxide import --from=z