fzf.zsh 320 B

12345678910111213
  1. # Setup fzf
  2. # ---------
  3. if [[ ! "$PATH" == */home/leo/.fzf/bin* ]]; then
  4. export PATH="${PATH:+${PATH}:}/home/leo/.fzf/bin"
  5. fi
  6. # Auto-completion
  7. # ---------------
  8. [[ $- == *i* ]] && source "/home/leo/.fzf/shell/completion.zsh" 2> /dev/null
  9. # Key bindings
  10. # ------------
  11. source "/home/leo/.fzf/shell/key-bindings.zsh"