citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

.fzf.bash (316B)


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