.fzf.zsh 330 B

12345678910111213141516
  1. #!/usr/bin/env zsh
  2. # Setup fzf
  3. # ---------
  4. if [[ ! "$PATH" == */opt/homebrew/opt/fzf/bin* ]]; then
  5. PATH="${PATH:+${PATH}:}/opt/homebrew/opt/fzf/bin"
  6. fi
  7. # Auto-completion
  8. # ---------------
  9. source "/opt/homebrew/opt/fzf/shell/completion.zsh"
  10. # Key bindings
  11. # ------------
  12. source "/opt/homebrew/opt/fzf/shell/key-bindings.zsh"