From f798ef648bb3521fcc0b753f7d16bead198998f4 Mon Sep 17 00:00:00 2001 From: Andrew Davidson Date: Sat, 8 Jun 2019 16:45:48 -0400 Subject: [PATCH] source fzf.zsh if it exists --- zsh/.zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index 33ffa20..637fb7e 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -13,6 +13,11 @@ else source ~/.zsh/hooks.zsh fi +# if FZF is installed, source it. +if [ -e ~/.fzf.zsh ]; then + source ~/.fzf.zsh +fi + if [ -e ~/.zshrc_local ]; then source ~/.zshrc_local fi